MATLAB: Can I return the ‘CurrentPoint’ property of the current axis of a polar plot in polar coordinates

MATLAB

I would like to return the current point from a polar plot in polar coordinates.

Best Answer

The ability to retrieve the polar coordinates of a point using the 'CurrentPoint' property of the axes object is not available in MATLAB.
To work around this issue, the 'CurrentPoint' needs to be returned in rectangular coordinates and then converted to polar coordinates using the CART2POL function.