Mercurial > hg > trimatlab
view private/plot_cvec.m @ 12:e9b425233168
Forgot to add plot_cvec.m
author | samer |
---|---|
date | Sun, 26 Feb 2012 23:11:48 +0000 |
parents | |
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