Borrar filtros
Borrar filtros

Change figure number according to an indice

9 visualizaciones (últimos 30 días)
Marian-Catalin Pirvulescu
Marian-Catalin Pirvulescu el 18 de Mzo. de 2020
Comentada: Marian-Catalin Pirvulescu el 18 de Mzo. de 2020
Hi everyone,
If I have a code like
imread('image.pgm')
for i=1:10
%here is some code to execute
figure('the image number', p,'of the series')
imagesc()%plot the image changed by the code

Respuesta aceptada

Rik
Rik el 18 de Mzo. de 2020
Two options of what you mean:
for k=1:10
figure('Name',sprintf('the image number %d of the series', k))
end
%or:
for k=1:10
figure(k)
end

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by