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

 Akzeptierte Antwort

Star Strider
Star Strider am 24 Apr. 2016

0 Stimmen

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 Kommentare

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Azzi Abdelmalek
Azzi Abdelmalek am 24 Apr. 2016

0 Stimmen

plot3(z,y,x)

3 Kommentare

mosa mm
mosa mm am 24 Apr. 2016
Thanks Azzi for the Answer. However what I meant is like the one in the picture
Azzi Abdelmalek
Azzi Abdelmalek am 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
mosa mm am 24 Apr. 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

Melden Sie sich an, um zu kommentieren.

Image Analyst
Image Analyst am 24 Apr. 2016

0 Stimmen

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

Gefragt:

am 24 Apr. 2016

Kommentiert:

N/A
am 15 Okt. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by