Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
which are the default properties of plot for the MATLAB 2014b?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
It seems that the default properties(linewidth,font size for title and label etc) for the new version of MATLAB have changed.I cant find a release of the default values?Which are they?
0 comentarios
Respuestas (1)
Rick Rosson
el 7 de Nov. de 2014
Editada: Rick Rosson
el 7 de Nov. de 2014
The easiest way to find out is simply to ask MATLAB:
fig = figure;
ax = axes;
lin = plot(1:10,rand(1,10));
get(fig)
get(ax)
get(lin)
1 comentario
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!