using surf and pol2cart on matrix

5 ビュー (過去 30 日間)
prrrrr
prrrrr 2020 年 6 月 25 日
コメント済み: Star Strider 2020 年 6 月 26 日
hello i have a 512x1000 matzrix
the coordinates are there divided into lines (x) as radius and columns (y) as angles. To each point in the matrix belongs a value (z).
How do I get the polar coordinates into cartesian coordinates (pol2cart). And can it plot at the end (with surf?)?
I would like to get in principle from my picture A the picture B
EDIT Forgot Code Example:
angles = (0:pi/8:2*pi)';
radii = 1:10;
[X, Y] = pol2cart(angles, radii)
  1 件のコメント
Adam Danz
Adam Danz 2020 年 6 月 25 日
Are the angles vector and the radii vector supposed to be different lengths?
How do those values plot a circle?

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

採用された回答

Star Strider
Star Strider 2020 年 6 月 25 日
編集済み: Star Strider 2020 年 6 月 25 日
The matrix you have is actually the ‘Z’ matrix. You need to create separate radius and angle matrices of the same size (use ndgrid or meshgrid for that, and be aware that their outputs are not the same), then use all three of those matrices as arguments to pol2cart. You will likely need to experiment a bit.
EDIT — (25 Jun 2020 at 23:17)
Using code example, try something like this:
Z = rand(512,1000); % Create 'Z'
angles = linspace(0, 2*pi, size(Z,2));
radii = linspace(1, 10, size(Z,1));
[A, R] = meshgrid(angles, radii);
[X, Y, Z] = pol2cart(A, R, Z);
figure
surf(X, Y, Z)
shading('interp')
grid on
.
  2 件のコメント
prrrrr
prrrrr 2020 年 6 月 26 日
編集済み: prrrrr 2020 年 6 月 26 日
thanks a lot :D
Star Strider
Star Strider 2020 年 6 月 26 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by