Octave 3.0.3 (MSVC) ← BLASの関係しない演算なので octave:1> tic;for jj=0:10000;end;toc Elapsed time is 0.0079 seconds. octave:2> A=randn(200);tic;for jj=0:10000;B=(A>0);end;toc Elapsed time is 5.9 seconds. octave:3> A=randn(4000000,1);tic;for ii=1:4000000,if A(ii,1)>0,end;end;toc Elapsed time is 52.8131 seconds.