How can I plot 3D polar plot in MATLAB
古いコメントを表示
I have three values, azimuth, elevation and corresponding data points. is it possible to plot 3D polar plot using this three values. and 1 want to show the third value in colour. I am looking forward to hear your suggestions. A sample data is attaching herewith
Thanking You,
採用された回答
その他の回答 (1 件)
Juan Esteban Villegas
2021 年 5 月 26 日
0 投票
Hey I made this function to plot a scatter 3d plot, it is rather raw but it does the job maybe you can modify it to make it better.
Best
Juan
3 件のコメント
hema vardhan patti
2023 年 5 月 3 日
Hey, I really need the syntax for this plot. Will help me a lot in my thesis
Juan Esteban Villegas
2023 年 5 月 3 日
Hey Hema, you can use something like:
theta = linspace(0,10*pi,401);
phi = linspace(-pi/2,pi/2,401);
rho = linspace(1,1,401);
polarscatter3(theta,phi,rho,'x','r','LineWidth',0.5)
hema vardhan patti
2023 年 5 月 4 日
Thank you for responding Juan, But how to get from a table of values or excel.
カテゴリ
ヘルプ センター および File Exchange で Polar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!