1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| %--------------------------------------------------------------------------
% Fonction pour ploter une structure de données d'un objet axe
function AxStructPlot(ax_struct)
Y = ax_struct.hgS_070000.children(1,1).properties.YData;
X = ax_struct.hgS_070000.children(1,1).properties.XData;
Name = ax_struct.hgS_070000.children(1,1).properties.DisplayName;
Couleur = ax_struct.hgS_070000.children(1,1).properties.Color;
Titre = ax_struct.hgS_070000.children(2,1).properties.String;
xtitre = ax_struct.hgS_070000.children(3,1).properties.String;
ytitre = ax_struct.hgS_070000.children(4,1).properties.String;
plot(X,Y,'color',Couleur,'DisplayName',Name)
grid on; legend('-DynamicLegend');
title(Titre)
xlabel(xtitre); ylabel(ytitre); |
Partager