フィルターのクリア

3d polar plot of vectors in cartesian coordinates

2 ビュー (過去 30 日間)
Ashbub
Ashbub 2017 年 12 月 26 日
コメント済み: Ashbub 2017 年 12 月 26 日
Hi, I have numerous 3D vectors (x, y and z coordinate for each) in excel file as columns. I want to draw a 3dpolarplot like polarhistogram in 2D in Matlab. Don't know how to do it. I am not a frequent user of Matlab. Can anyone give any suggestion? Thanks in advance.

採用された回答

KSSV
KSSV 2017 年 12 月 26 日
[num,txt,raw] = xlsread(filename) ;
x = num(:,1) ;
y = num(:,2) ;
z = num(:,3) ;
Now, you can use x,y,z for plotting. Have a look on scatter, plot3, etc.
  3 件のコメント
KSSV
KSSV 2017 年 12 月 26 日
Ashbub
Ashbub 2017 年 12 月 26 日
Thankyou.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePolar Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by