reverse-shooting

Matlab scripts for reverse shooting
Log | Files | Refs | README

allc.m (161B)


      1 % allc.m  y=allc(x);
      2 %  Basically applies 'all' on a column basis - even if a row vector;
      3 
      4 function y=allc(x);
      5 
      6 if size(x,1)==1;
      7    y=x;
      8 else;
      9    y=all(x);
     10 end;