How to view plotting in real time

2 views (last 30 days)
x=[1,2,3,4,5,6,7,8,9];
y=[1,2,3,4,5,6,7,8,9];
hold on
% scatter(x,y,'X')
% line(x,y)
% plot(x,y,'-o')
plot(x,y,'-o','MarkerSize',10,...
'MarkerEdgeColor','red',...
'MarkerFaceColor',[1 .6 .6])
I want to see the real time ploting(meaning pop-up figure window and see while ploting)

Accepted Answer

Erivelton Gualter
Erivelton Gualter on 8 May 2019
Hi Mekala,
Alternatevely, you can run the follow code:
x = [1,2,3,4,5,6,7,8,9];
y = [1,2,3,4,5,6,7,8,9];
figure;
hold on;
axis([min(x) max(x) min(y) max(y)]);
X = [];
Y = [];
for i=1:length(x)
X = [X x(i)];
Y = [Y y(i)];
plot(X,Y,'-o','MarkerSize',10,...
'MarkerEdgeColor','red',...
'MarkerFaceColor',[1 .6 .6]);
pause(.1);
end

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products


Release

R2017a

Community Treasure Hunt

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

Start Hunting!