How to make standard semilogy plot more informative
Afficher commentaires plus anciens
Suppose, I'm plotting two datasets of two different algorithms using semilogy like this
eps1 = 1:50;
eps2 = 1:50;
eps2 = eps2 *1/10;
semilogy(eps1, '-o');
hold
semilogy(eps2, '-o');

Suppose dataset eps1 belongs to algorithm 1 and eps2 belongs to algorithm 2. How can I make annotation about them in the plot and make the plot more stylish
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Annotations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!