Labeling Plots inside Function
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a function that creates a plot, but when I call it in my main script, I don't get any labels. Is there a way I can assign the labels within the function (without doing it in the main script)?
function [] = myplot(data)
xlabel('x');
ylabel('y');
title('title');
plot(data);
0 commentaires
Réponse acceptée
the cyclist
le 28 Juil 2011
I would try putting the labeling commands after the plotting command.
1 commentaire
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Axis Labels dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!