Plotting 3D graph
古いコメントを表示
Hello everyone,
How can I plot a 3D graph for power and frequency vs. time (z,y,x)?
Thanks

採用された回答
その他の回答 (2 件)
Azzi Abdelmalek
2016 年 4 月 24 日
plot3(z,y,x)
3 件のコメント
mosa mm
2016 年 4 月 24 日
Azzi Abdelmalek
2016 年 4 月 24 日
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
2016 年 4 月 24 日
カテゴリ
ヘルプ センター および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!