How to view plotting in real time

2 visualizaciones (últimos 30 días)
Mekala balaji
Mekala balaji el 8 de Mayo de 2019
Comentada: Mekala balaji el 9 de Mayo de 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)

Respuesta aceptada

Erivelton Gualter
Erivelton Gualter el 8 de Mayo de 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

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by