Info

この質問は閉じられています。 編集または回答するには再度開いてください。

angles to arrows representation

1 回表示 (過去 30 日間)
Kalyan Samala
Kalyan Samala 2020 年 11 月 23 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have an excel which contains angles and want to convent them into arrows representation.
  2 件のコメント
Chunru
Chunru 2021 年 8 月 2 日
What is "arrows representation"? How it relates to your data?
Rik
Rik 2021 年 8 月 2 日
Have a read here and here. It will greatly improve your chances of getting an answer.

回答 (2 件)

Bjorn Gustavsson
Bjorn Gustavsson 2021 年 8 月 2 日
Arrow in 2-D:
r_from_origin = l*[cos(theta),sin(theta)];
Arrow in 3-D:
r_from_origin = l*[cos(phi)*sin(theta),sin(phi)*sin(theta),cos(theta)];
Functions to plot arrows neatly: arrow and arrow3
HTH

Image Analyst
Image Analyst 2021 年 8 月 2 日
How about annotation()?
annotation(lineType,x,y) creates a line or arrow annotation extending between two points in the current figure. Specify lineType as 'line', 'arrow', 'doublearrow', or 'textarrow'. Specify x and y as two-element vectors of the form [x_begin x_end] and [y_begin y_end], respectively.
or the quiver() function?

Community Treasure Hunt

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

Start Hunting!

Translated by