Plotting 3D graph
Show older comments
Hello everyone,
How can I plot a 3D graph for power and frequency vs. time (z,y,x)?
Thanks

Accepted Answer
More Answers (2)
Azzi Abdelmalek
on 24 Apr 2016
plot3(z,y,x)
3 Comments
mosa mm
on 24 Apr 2016
Azzi Abdelmalek
on 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
on 24 Apr 2016
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!