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

 Respuesta aceptada

Star Strider
Star Strider el 24 de Abr. de 2016

0 votos

See if any of the File Exchange contributions in a 3D area plot search do what you want. See specifically AREA3 (that was last updated 12 years ago, so may only work in MATLAB versions 2014a and earlier).
Otherwise, the best I can suggest to you is the ribbon plot.

3 comentarios

mosa mm
mosa mm el 25 de Abr. de 2016
Thanks
Star Strider
Star Strider el 25 de Abr. de 2016
My pleasure.
N/A
N/A el 15 de Oct. de 2018
Have you solved this problem? I want to draw this figure like you. Could you share your result with me?

Iniciar sesión para comentar.

Más respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 24 de Abr. de 2016

0 votos

plot3(z,y,x)

3 comentarios

mosa mm
mosa mm el 24 de Abr. de 2016
Thanks Azzi for the Answer. However what I meant is like the one in the picture
Azzi Abdelmalek
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
mosa mm el 24 de Abr. de 2016
Thanks Azzi, you are very helpful. But the 3D plot that I am looking for to see is attached here (Plot3d.png). It shows that on each time sample there is a separate graph, I don't know even if it's possible in Matlab or not? Thanks anyway

Iniciar sesión para comentar.

Image Analyst
Image Analyst el 24 de Abr. de 2016

0 votos

I think that might best be done with waterfall().

Etiquetas

Preguntada:

el 24 de Abr. de 2016

Comentada:

N/A
el 15 de Oct. de 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by