Mercurial > hg > trimatlab
view private/plot_cvec.m @ 14:1d8ae1c1ee2f
test THEN commit...
author | samer |
---|---|
date | Sun, 26 Feb 2012 23:17:29 +0000 |
parents | e9b425233168 |
children |
line wrap: on
line source
% plot_cvec - Plot complex vector as bar chart function plot_cvec(x) if isreal(x) bar(x); else bar([real(x),imag(x)]); %legend({'real','imag'}); end xlim([0.5, length(x)+0.5]); end