Plotting 3D graph
Mostra commenti meno recenti
Hello everyone,
How can I plot a 3D graph for power and frequency vs. time (z,y,x)?
Thanks

Risposta accettata
Più risposte (2)
Azzi Abdelmalek
il 24 Apr 2016
plot3(z,y,x)
3 Commenti
mosa mm
il 24 Apr 2016
Azzi Abdelmalek
il 24 Apr 2016
Look at this example
t=linspace(0.1,2,20)
freq=linspace(0,20000,20)
[x,y]=meshgrid(t,freq)
z=sin(x).^2+cos(y).^2 %your power vector
surf(x,y,z)
mosa mm
il 24 Apr 2016
Image Analyst
il 24 Apr 2016
0 voti
I think that might best be done with waterfall().
1 Commento
mosa mm
il 25 Apr 2016
Categorie
Scopri di più su Surface and Mesh Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!