动画3D组散点图相对于时间MATLAB

时间:2012-08-23 12:44:06

标签: matlab animation user-interface plot matlab-figure

您好,并提前感谢您的帮助! 我使用MATLAB制作了一个包含4个颜色组的3D散点图(上传,见下文)。 现在我想根据时间设置散点图的动画。因此,如果每个点都有时间戳,我想按顺序显示它们。

所以例如:如果我有点A,B,C在汽车的特定xyz位置上重复错误,并且错误A是在上午10点和错误B在12PM和错误C在下午3点我想要绘制在动画中按顺序分。

另外,如果可能的话,我想用滚动条制作一个GUI,这样我就可以滚动时间或回溯时间,从而在我前进时加点,或者在我回溯时删除点数。或者至少是暂停scater过程的选项。

注意:散点图将有大约2000-3000点...我不知道这是否有所作为。我也是MATLAB的新手: - )

非常感谢你的帮助和时间! 亲切的问候

阿尔弗雷


%Scatterplot data

x = [ 50 55 200 210 350 360 400 450 550 560 600 670 750 850 860];
y = [ 50 -50 100 -100 150 -150 151 -151 150 -150 152 -152 150 -150 150];
z = [ 120 120 100 300 100 300 100 300 100 300 100 300 100 300 100];

% alocates space for the z data by creating a matrix array of all ones
g = [0*ones(3,1);1*ones(3,1); 2*ones(3,1); 3*ones(3,1); 4*ones(3,1); ];

%set specific RGB color value for positions 0-4 and background color
color = [0 0 0; 1 0 0; 0 0 1; 1 1 0; 0 1 0]

whitebg([  0.6758    0.8438    0.8984]) % light blue background


% gscatter creates a 2D matrix with the values from x and y
% and creates groups acording to the 'g' matrix size
% h = gscatter captures output argument and returns an array of handles to the lines on the graph)
h = gscatter(x, y, g, color)

%% for each unique group in 'g', set the ZData property appropriately
gu = unique(g);
for k = 1:numel(gu)
set(h(k), 'ZData', z( g == gu(k) ));
end

%set the aspect ratio, grid lines, and Legend names for the 3D figure 
daspect([4.5 5 5])
grid on
legend('Position 0','Position 1','Position 2','Position 3','Position 4')

% view a 3D grapgh (for 2D set to "2")
view(3)

1 个答案:

答案 0 :(得分:0)

如果我理解正确,你只想展示彼此之后所有不同的散点图。这很容易;只需将其附加到您拥有的代码中:

% loop through time
xl = xlim;
yl = ylim;
zl = zlim;
for ii = h(:).'
    % switch all scatter plots off
    set(h, 'visible', 'off')
    % switch only 1 on, for the current time
    set(ii, 'visible', 'on');

    % set original limits
    xlim(xl); ylim(yl); zlim(zl);

    % draw and some delay
    drawnow, pause(1);
end

至于滑块,这是一个如何做到这一点的例子。将此附加到您拥有的代码:

xl = xlim;
yl = ylim;
zl = zlim;

slider = uicontrol(...
    'parent', gcf,...
    'style', 'slider',...
    'min', 0,...
    'max', 4,...
    'sliderstep', [1/4 1/4],...
    'units', 'normalized',...
    'position', [0.05 0.05 0.90 0.05],...    
    'callback', @SliderCallback);

function SliderCallback(sliderObj, ~)
    set(h, 'visible', 'off')
    set(h(get(sliderObj, 'Value')+1), 'visible', 'on')
    xlim(xl); ylim(yl); zlim(zl);
end

请注意,这使用嵌套的function,这意味着您的整个脚本需要成为一个函数(这实际上是执行任何可感知大小的事情的正确方法)。