Polar map to cartesian grid

5 次查看(过去 30 天)
David Santos
David Santos 2019-3-1
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?

回答(1 个)

Divyajyoti Nayak
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:

类别

Help CenterFile Exchange 中查找有关 Cartesian Coordinate System Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by