Robochameleon  v1.0
cplx2mat.m
1 function y = cplx2mat(x)
2 
3 x = x(:);
4 y = [real(x) imag(x)];