add text to plot after several other plots

조회 수: 1 (최근 30일)
ga rec
ga rec 2019년 8월 12일
답변: Abhilash Padma 2019년 8월 16일
Is it possible to add a text to a plot after several other plots in matlab live script?
Example:
P0 = plot(x0,y0)
...
P3 = plot(x3,y3)
and now: how to add a text to plot P0???

답변 (1개)

Abhilash Padma
Abhilash Padma 2019년 8월 16일
Text can be a member of axis and can’t be a member of plot(line). If you have the coordinates for the text, you can add text to the axes anywhere. In your case, it is possible to add a text for P0. See the example below:
hold on;
p0=plot(1:10);
p1=plot(sin(1:10));
p2=plot(cos(1:10));
text(4,4,'text');
For more information, refer the following link: https://www.mathworks.com/help/matlab/ref/text.html

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by