reverse-shooting

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

notmissing.m (222B)


      1 % notmissing.m   5/1/97   i=notmissing(x);
      2 %
      3 %  Accepts a TxN matrix x and returns a Tx1 vector i indicating which rows
      4 %  of x have no missing data:
      5 %
      6 %  i=~any(isnan(x)')';
      7 
      8 function i=notmissing(x);
      9 
     10 i=~any(isnan(x)')';