reverse-shooting

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

vector.m (143B)


      1 % vector.m
      2 % reshapes a matrix into a column vector.  1st column on top of 2nd, etc.
      3 
      4 function y=vector(x);
      5 
      6 [m,n]=size(x);
      7 y=reshape(x,m*n,1);