legend is not showing
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sivalogan satchithanandamoorthy
le 27 Juin 2017
Commenté : Walter Roberson
le 27 Juin 2017
for i=1:x %loop
figure(1)
hold on
plot(strain{i},stress{i});
legendInfo{i}=['Cycle',mat2str(cycle(i))]; %convert value to string
plot(Time{i},Value{i});
legendIn2{i}=['Simulink','DisplayName','numerical model',mat2str(cycle(i))];
hold all
end
legend(legendInfo,legendIn2)
for some reason only legendIn2 is being displayed in the plot. how to fix this? Any help would be much appricated.
siva
0 commentaires
Réponse acceptée
Walter Roberson
le 27 Juin 2017
legend([legendInfo; legendIn2])
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Legend 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!