Display the same image in two figures
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have a problem with gui the image displayed in the first Figure but the same image is not displayed in the figure after it
1 comentario
jahanzaib ahmad
el 14 de Feb. de 2019
x=rand(10,2);
figure(1)
plot(x(:,1),x(:,2))
figure(2)
plot(x(:,1),x(:,2))
what the problem ?
Respuestas (1)
Mark Sherstan
el 15 de Feb. de 2019
You must have a figure or some variables saved which is affecting your output. Add the two lines at the start of your code to see if the problem persists. The following code gave me results shown below.
clear all
close all
x=rand(10,2);
figure(1)
plot(x(:,1),x(:,2)); title('Figure 1');
figure(2)
plot(x(:,1),x(:,2)); title('Figure 2');
0 comentarios
Ver también
Categorías
Más información sobre Lighting, Transparency, and Shading en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!