Mercurial > hg > trimatlab
annotate 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 |
rev | line source |
---|---|
samer@12 | 1 % plot_cvec - Plot complex vector as bar chart |
samer@12 | 2 function plot_cvec(x) |
samer@12 | 3 if isreal(x) |
samer@12 | 4 bar(x); |
samer@12 | 5 else |
samer@12 | 6 bar([real(x),imag(x)]); |
samer@12 | 7 %legend({'real','imag'}); |
samer@12 | 8 end |
samer@12 | 9 xlim([0.5, length(x)+0.5]); |
samer@12 | 10 end |
samer@12 | 11 |