Matlab:将第三个变量添加到二维图中的自定义数据提示

Matlab: adding a third variable to custom data tips in a 2D plot

我正在使用 Matlab R2020b,我想在将光标悬停在二维绘图中的数据点上时显示其他信息。我有极坐标图的角度和半径值。每个数据点都与一个时间相关联。我创建了类似于这样的情节:

t = linspace(0, 1, 100);
phi = 2*pi*t;
r = t.^2+1;

h = figure;
polarplot(phi, r, '-sb');

dcm = datacursormode(h);
datacursormode on;
set(dcm, 'updatefcn', @myfunction);


function output_txt = myfunction(obj,event_obj)
% Display data cursor position in a data tip
% obj          Currently not used
% event_obj    Handle to event object
% output_txt   Data tip text, returned as a character vector or a cell array of character vectors

pos = event_obj.Position;


%********* Define the content of the data tip here *********%

% Display the x and y values:
output_txt = {['\phi: ' num2str(pos(1)*180/pi) '°'],...
    ['r: ' num2str(pos(2))]};
%***********************************************************%

% If there is a z value, display it:
if length(pos) > 2
    output_txt{end+1} = ['Z',formatValue(pos(3),event_obj)];
end

%***********************************************************%

end

理想情况下,我希望为我 select 的任何数据点显示一个三元组(角度、半径、时间)。有关自定义数据提示的信息没有告诉我如何添加另一个变量(时间)的值,仅在使用 3D 绘图(如 plot3)时。

你知道这个问题的解决方法吗?

您希望在选择数据点时将时间作为 polarplot 中的第三个值,为此您可以将时间(变量 t)添加到 ZData 属性 的 polarplot.

为此,您需要使用极坐标轴的处理程序,即 hax = polarplot(phi, r, '-sb');,以便您可以将时间作为 ZData:hax.ZData = t;。完成此操作后,myfunction 中的变量 pos 的长度将为 3 而不是 2,因此您的 if 语句将被执行。

更新后的代码应如下所示:

t = linspace(0, 1, 100);
phi = 2*pi*t;
r = t.^2+1;

h = figure;
hax = polarplot(phi, r, '-sb');   % New code
hax.ZData = t;                    % New code

dcm = datacursormode(h);
datacursormode on;
set(dcm, 'updatefcn', @myfunction);


function output_txt = myfunction(obj,event_obj)
% Display data cursor position in a data tip
% obj          Currently not used
% event_obj    Handle to event object
% output_txt   Data tip text, returned as a character vector or a cell array of character vectors

  pos = event_obj.Position;


  %********* Define the content of the data tip here *********%

  % Display the x and y values:
  output_txt = {['\phi: ' num2str(pos(1)*180/pi) '°'],...
      ['r: ' num2str(pos(2))]};
  %***********************************************************%

  % If there is a z value, display it:
  if length(pos) > 2
      output_txt{end+1} = ['Z',formatValue(pos(3),event_obj)];
  end

  %***********************************************************%

end

如果它不起作用请告诉我 :) 祝你好运!