How to view plotting in real time

2 vues (au cours des 30 derniers jours)
Mekala balaji
Mekala balaji le 8 Mai 2019
Commenté : Mekala balaji le 9 Mai 2019
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)

Réponse acceptée

Erivelton Gualter
Erivelton Gualter le 8 Mai 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

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by