gpt4 book ai didi

matlab - 如何从 matlab 中的大散点图中找到索引?

转载 作者:太空宇宙 更新时间:2023-11-03 19:55:49 24 4
gpt4 key购买 nike

我有一个包含大约 6000 个项目的散点图。

x = rand(1,6000);
y = rand(1,6000);
scatter(x,y)

有没有办法使用 GUI 找到给定点的索引? (我们放大数据,想找到产生一个点的具体指标)

最佳答案

这是一个非常简单的解决方案:

打开绘图>数据游标>编辑文本更新函数

设置文本更新函数为:

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

pos = get(event_obj,'Position');

% Import x and y
x = get(get(event_obj,'Target'),'XData');
y = get(get(event_obj,'Target'),'YData');

% Find index
index_x = find(x == pos(1));
index_y = find(y == pos(2));
index = intersect(index_x,index_y);

% Set output text
output_txt = {['X: ',num2str(pos(1),4)], ...
['Y: ',num2str(pos(2),4)], ...
['Index: ', num2str(index)]};

% If there is a Z-coordinate in the position, display it as well
if length(pos) > 2
output_txt{end+1} = ['Z: ',num2str(pos(3),4)];
end

结果:

enter image description here

仅供引用,如果您想以编程方式执行此操作,那么这里有一篇很好的文章 here .

关于matlab - 如何从 matlab 中的大散点图中找到索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15488810/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com