Polar map to cartesian grid
5 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Divyajyoti Nayak
on 18 Jun 2025
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 Comments
See Also
Categories
Find more on Cartesian Coordinate System Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!