How to animate graph?

6 次查看(过去 30 天)
Mark Cuanan
Mark Cuanan 2018-3-22
回答: Jan 2018-3-22
Say I have a 3x3 matrix, I want to plot the 3 columns in animation. Meaning plotting the column values 1 after the other. Any idea please. Thanks for the help.

采纳的回答

Jan
Jan 2018-3-22
M = rand(3, 3);
figure;
axes('XLim', [1, 3], 'YLim', [0, 1])
H = line(1:3, inf(1, 3));
for k = 1:3
set(H, 'YData', M(:, k));
pause(1);
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Animation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by