[Scilab-users] vectoriztion and sets of data

Paul Carrico paul.carrico at free.fr
Thu Nov 22 15:48:32 CET 2012


Dear All,

 

On the above example, it should be possible to select a sets of rows, should
not ? if so how please ?

 

Thanks

 

Paul

 

###################################################

mode(0)
 
// initial matrix
A = rand(8,6);
B = zeros(8,6);
C = [A ; A; B; A; B; B; A];
[nr,nc] = size(C);
 
// each set of 8 rows is analysed
Search = zeros((nr/8),1);
//i = ones((nr/8),1).* 1;
i = [1:(nr/8)]';
// Search = max(abs(C((8*(i - 1) + 1):(8 * i),:)));
Search = max(abs(C([i. * 8 - 7 : i. * 8],:)));
B = (find(Search == 0))';
 
D = zeros((nr/8),1);
D(B,2) = 1;

 

 

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.scilab.org/pipermail/users/attachments/20121122/23954344/attachment.htm>


More information about the users mailing list