Plot setting axis properties

6 visualizaciones (últimos 30 días)
john birt
john birt el 5 de Abr. de 2011
I just want to set the following properties
axis( ylim([-0.05 0.25]), xlabel('Lag'), ylabel('ACF'))
axes('FontSize',5)
set(gcf,'Position',[400 400 300 200])
I know this is wrong but I just want to label the x and y axis, set the font size for all axis labels and all numbering to font-size 5 and set the graph so its just 300 wide by 200 high.
how do I do this? )

Respuesta aceptada

Jan
Jan el 5 de Abr. de 2011
set(gca, 'ylim', [-0.05 0.25], 'FontSize', 5);
xlabel('Lag');
ylabel('ACF'))
set(gcf, 'Position', [400 400 300 200])
  1 comentario
john birt
john birt el 5 de Abr. de 2011
thank you, thats awesome!

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by