Borrar filtros
Borrar filtros

How do I make my graph as big as possible on the screen?

1 visualización (últimos 30 días)
Hi - how do I make my graph as big as possible on screen. Thanks
  1 comentario
Matt Fig
Matt Fig el 2 de Nov. de 2012
Hi - how do I make my graph as big as possible on screen. Thanks

Iniciar sesión para comentar.

Respuesta aceptada

Chandra Kurniawan
Chandra Kurniawan el 11 de En. de 2012
Just a little example with imshow
scrsz = get(0,'screensize');
imshow('peppers.png');
set(gcf,'position',scrsz);
Or may be :
scrsz = get(gcf,'position');
set(gca,'unit','pixel','position',[0 0 scrsz(3) scrsz(4)]);
imshow('peppers.png');

Más respuestas (1)

Tom
Tom el 12 de En. de 2012
That's great thanks.

Categorías

Más información sobre Directed Graphs en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by