Mercurial > hg > trimatlab
annotate private/plot_cvec.m @ 18:062d46712995 tip
Moved mc_global_info1 back to public folder
author | samer |
---|---|
date | Mon, 02 Apr 2012 21:50:43 +0100 |
parents | e9b425233168 |
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 |