0

假设,我在 MATLAB 中使用 surf/mesh 函数绘制了许多球体。

我想显示自定义数据值而不是 x、y、z。不同球体的所有值都将不同,单击特定球体上的任何点应显示相同的数据。参考图。我如何实现它?

到目前为止,我正在考虑使用 Surface 属性“标签”为每个球体分配唯一的字符串。有没有更好的方法呢?

在此处输入图像描述

[x,y,z] = sphere;
a=[3 1 3 1];
s1=surf(x*a(1,4)+a(1,1),y*a(1,4)+a(1,2),z*a(1,4)+a(1,3),...
        'FaceColor', [1 0 0],'FaceLighting','flat','EdgeColor','none');
s1.Tag = '1';

我应该如何为自定义功能使用自定义数据游标功能?

4

1 回答 1

2

datacursor 函数是 的一个属性figure,因此诀窍是将 datatip 更新函数分配给图形。

将每个球体/图形对象的自定义信息放在其Tag属性中对于您想要实现的目标是一个好主意。

我们先定义更新函数。保存以下文件datatip_sphere.m并确保它在 Matlab 路径中可见:

function output_txt = datatip_sphere(~,event_obj)
% Display the tag of the cursor target
% obj          Currently not used (empty)
% event_obj    Handle to event object
% output_txt   Data cursor text string (string or cell array of strings).

output_txt = { event_obj.Target.Tag };

有了这些,现在让我们绘制两个球体并确保光标函数显示您想要的内容:

% retrieve the handle of the figure used for sphere display
% (better than calling 'gca' in datacursormode(hfig)
hfig = figure ;

% Draw your objects
[x,y,z] = sphere;
a=[3 1 3 1] ;
b=[5 6 4 1] ;
s1 = surf(x*a(1,4)+a(1,1),y*a(1,4)+a(1,2),z*a(1,4)+a(1,3),...
        'FaceColor', [1 0 0],'FaceLighting','flat','EdgeColor','none','Facealpha',0.5);
hold on 
s2 = surf(x*b(1,4)+b(1,1),y*b(1,4)+b(1,2),z*b(1,4)+b(1,3),...
        'FaceColor', [0 0 1],'FaceLighting','flat','EdgeColor','none','Facealpha',0.5);
axis equal
    
% Add a tag to each object
s1.Tag = 'This is sphere 1';
s2.Tag = 'This is sphere 2';

% Now force the figure datatip function to your custom version
dcm = datacursormode(hfig) ;
dcm.UpdateFcn = @datatip_sphere ;

显然,重要的行是最后 4 行,您在其中Tag为每个图形对象分配一个,特别是最后两行,您将自定义光标更新功能分配给图形。


酷,现在您的数据提示将始终显示分配给对象的名称/标签,无论它们的位置如何:

数据提示动画

于 2020-06-22T08:54:48.093 回答