Polar map to cartesian grid
5 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I'm working with data in polar coordinates:
rr=vector of distances, 1x2029;
bearings=angles, 1x180;
TLp= z value at each rr,bearings , 2029x180
I've tried using pol2cart:
[xx,yy,zz]=pol2cart(bearings,rr,TLp);
But is not working because all the vector have to be the same size, any clues of how to solve it?
0 件のコメント
回答 (1 件)
Divyajyoti Nayak
2025 年 6 月 18 日
To use the 'pol2cart' function the radii and angle vectors need to be of equal size, as they define the coordinates of the points. The 'rr' and 'bearings' variables are possible values for the radii and angles, so they can be used to make a polar grid using the 'meshgrid' function. This grid then can be used by the 'pol2cart' function to convert into a cartesian grid. Here's some sample code:
clc
clear
r = 0:1:2028; % 1 X 2029
theta = linspace(0,pi,180); % 1 X 180
zPolar = r'*sin(theta); % 2029 X 180
[rGrid, thetaGrid] = meshgrid(r,theta);
[x,y,z] = pol2cart(thetaGrid,rGrid,zPolar');
Here's the documentation to the 'meshgrid' and 'pol2cart' functions:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Cartesian Coordinate System Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!