How to display the value of output on plot?
231 次查看(过去 30 天)
显示 更早的评论
My output is Error_x. Is their any way that MATLAB displays the value of output on plot? Like thethe R^2 In the given imagee.
Error_x(count)=sqrt(error)/sqrt(DN);
end
figure
hold on
plot(Error_x,'s-r')
0 个评论
回答(2 个)
KSSV
2020-10-22
编辑:KSSV
2020-10-22
Read about text. With this function, you can specify the string str by providing location (x,y). At this position (x,y) you can display a string str.
5 个评论
KSSV
2020-10-22
With the data in hand ..you can find R^2 and you can use text or annotate. Also after plotting you can go to edit and insert a text box manually.
Walter Roberson
2020-10-22
You can use text() or you can use annotate() . I would suggest that text() is much easier to use for this purpose.
You could also build the value into the title() of the plot, of course.
Your output appears to be a vector, so it is not immediately clear what output you want to display.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!