Better data tip for Polar graph

Is there any way to make Matlab give polar coordinates when placing a data tip on a graph instead of Cartesian?
And really, why on earth does Matlab not do that in the first place?

Respuestas (3)

Oleg Komarov
Oleg Komarov el 8 de Ag. de 2011

0 votos

At the end of the documentation of datacursormode you will find example on how to customze the text of the tip.
George Sterling
George Sterling el 12 de Mayo de 2016
Editada: George Sterling el 12 de Mayo de 2016

0 votos

% This function changes data tips from cartessian to polar coords
function polar_datacursormode
dcm_obj = datacursormode(gcf); set(dcm_obj,'UpdateFcn',@myupdatefcn)
function txt = myupdatefcn(empt,event_obj) % Customizes text of data tips
pos = get(event_obj,'Position');
R = sqrt(pos(1)^2 + pos(2)^2);
Theta = atand(pos(2)/pos(1));
if Theta < 0 Theta = Theta + 360; end
txt = {['R: ' num2str®], ... ['Theta: ' num2str(Theta)]};

Categorías

Más información sobre Polar Plots en Centro de ayuda y File Exchange.

Productos

Etiquetas

Preguntada:

el 7 de Ag. de 2011

Respondida:

el 12 de Mayo de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by