Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

which are the default properties of plot for the MATLAB 2014b?

1 vue (au cours des 30 derniers jours)
Dimitrios
Dimitrios le 7 Nov 2014
Clôturé : MATLAB Answer Bot le 20 Août 2021
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?

Réponses (1)

Rick Rosson
Rick Rosson le 7 Nov 2014
Modifié(e) : Rick Rosson le 7 Nov 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 commentaire
Dimitrios
Dimitrios le 7 Nov 2014
Thanks for the answer.Unfortunatelly I dont have the new version.I asked it because the plots in the new version are cool and i want to get the exact properties to impliment in an older version :)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by