Is there any way to display a value instead of circles for points on a plot?

1 Ansicht (letzte 30 Tage)
Is there any way to display a value instead of circles for points on a plot?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 18 Nov. 2016
a=1:10:100;
b=sin(a);
plot(a,b);
labels = arrayfun(@(A,B) sprintf('%g:%g', A, B), a, b, 'Uniform', 0);
text(a, b, labels)

Weitere Antworten (1)

Brendan Hamm
Brendan Hamm am 17 Nov. 2016
You can use the text function.
x = rand(5,1);
y = rand(5,1);
txt = num2str((1:5)');
text(x,y,txt)
  1 Kommentar
joys roselin
joys roselin am 18 Nov. 2016
Bearbeitet: Walter Roberson am 18 Nov. 2016
It doesn't work it out...can u tell me whether it suits for this code?
a=1:10:100;
b=sin(a);
plot(a,b);
txt = num2str((a:b)');
text(a,b,txt);

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by