Filter löschen
Filter löschen

Annotate multipl plots with text

16 Ansichten (letzte 30 Tage)
Karthik Brs
Karthik Brs am 11 Nov. 2015
Kommentiert: Karthik Brs am 11 Nov. 2015
Hello everyone! I am required to annotate multiple line plots with the numbers as can be seen in the figure. I have put the numbers between the lines using 'plot edit toolbar', but I wish to do it in the code. I have tried many commands like annotation, text, ds2nfu, but all commands requires x and y coordinates for the location of annotation. I just need a number, which is unique to that particular line plot to be printed in the manner as can be seen in the figure. Is there any way wherein I can insert these numbers to the respective plots without extracting the location data? Because, I wont be aware of the x and y most of the times! Your inputs are welcome! Thank you in advance!

Akzeptierte Antwort

Thorsten
Thorsten am 11 Nov. 2015
Bearbeitet: Thorsten am 11 Nov. 2015
Well, you are aware of the x and y pos, because you can plot the line. You can do the following
x = 1:10+randi(10);
y = [rand*x; rand*x; rand*x; rand*x];
plot(x,y')
ind = round([0.5 0.55 0.6 0.65]*numel(x)); % specify the x positions
labels = {'36' '40' '44' '42'}; % the labels of the lines
for i =1:numel(ind)
text(x(ind(i)), y(i, ind(i)), labels{i})
end
  5 Kommentare
Thorsten
Thorsten am 11 Nov. 2015
Use
x = a1;
y = [F1 F2 F3 F4]';
and run the modified code above, starting from the fifth line
ind = ....
Karthik Brs
Karthik Brs am 11 Nov. 2015
Works like a charm! Thanks a ton!! :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by