Plotting 3D graph
Mostrar comentarios más antiguos
Hello everyone,
How can I plot a 3D graph for power and frequency vs. time (z,y,x)?
Thanks

Respuesta aceptada
Más respuestas (2)
Azzi Abdelmalek
el 24 de Abr. de 2016
plot3(z,y,x)
3 comentarios
mosa mm
el 24 de Abr. de 2016
Azzi Abdelmalek
el 24 de Abr. de 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
el 24 de Abr. de 2016
Image Analyst
el 24 de Abr. de 2016
0 votos
I think that might best be done with waterfall().
1 comentario
mosa mm
el 25 de Abr. de 2016
Categorías
Más información sobre Surface and Mesh Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!