How can I calculate the modulus and argument for every point in a plot?

5 次查看(过去 30 天)
Hi all,
Suppose, I have a scattered plot like this -
I want find out the θ, and r for every corresponding point. Can anyone please give me an idea on how to do that?
The X, Y values are in XY.mat file I added. Where,
X = xy(:,1);
Y = xy(:,2);
Any feedback will be highly appreciated!

采纳的回答

Walter Roberson
Walter Roberson 2023-4-6
[theta, r] = cart2pol(X, Y);
  2 个评论
Ashfaq Ahmed
Ashfaq Ahmed 2023-4-6
编辑:Ashfaq Ahmed 2023-4-6
Yes, perfect! Does it count from the first element? Also, how is the theta calculated (i.e., its dimension)?
Walter Roberson
Walter Roberson 2023-4-6
The values are calculated relative to (0,0) . If you want to calculate relative to some other point, subtract that other point from X and Y .
theta = atan2(Y, X) and so is radians.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by