ColumnVector.m 90 B

123456
  1. function [ out ] = ColumnVector( in )
  2. % convert vector to column shape
  3. out = in(:);
  4. end