Display values on plot
77 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Dear all,
How do I display values on a plot (as shown in picture) or something similar to this for multiple subplots?

Thank you.
0 Commenti
Risposta accettata
Chunru
il 10 Dic 2021
Modificato: Chunru
il 10 Dic 2021
You can use text. For example
t = 0:.01:2*pi;
x = cos(t);
plot(t, x);
text(0.2, 0.4, {'This', 'is', 'a', 'test'}, 'EdgeColor', 'r')
2 Commenti
Chunru
il 10 Dic 2021
if you have a string array
r = ["r=0.1"; "r=0.2"];
Then you can do the following:
t = 0:.01:2*pi;
x = cos(t);
plot(t, x);
text(0.2, 0.4, r, 'EdgeColor', 'r')
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Subplots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

