[Scilab-users] Finding "extreme values"

laurent berger laurent.berger at univ-lemans.fr
Wed Jan 16 21:08:10 CET 2013


I'm not sure that I have understood your question but may be :

X=rand(10000,1);
mx=mean(X);
ind1=find(X>mx*1.1);
ind2=find(X<mx*0.9);
a=X(ind1);
b=X(ind2);
X(ind1)=[];
X(ind2)=[];




--
View this message in context: http://mailinglists.scilab.org/Finding-extreme-values-tp4025679p4025693.html
Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com.



More information about the users mailing list