How to view plotting in real time

2 visualizzazioni (ultimi 30 giorni)
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)

Risposta accettata

Erivelton Gualter
Erivelton Gualter il 8 Mag 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

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti


Release

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by