I've been trying to display the data that my plot is displaying, but my problem is certain data is overlapping the other one.
Is there a way were I can display the numbers without them covering each other?
% Get the data and construct the polynomial interpolant.
n = 11; ind = transpose([1:11]);
x = -4+8*(ind-1)/(n-1);
x2 = 4*cos((pi*(2*ind-1))/(2*n));
y = exp(-x.^2);
c = interpnewt(x,y);
%c2 = interpnewt(x2,y);
plot(x, y, 'rx')
hold on
z = transpose(linspace(-4,4,500));
p = hornernewt(c,x,z);
%p1 = hornernewt(c2,x2,z);
set(gca, 'fontsize', 9)
fp = plot(z,p)
strValues = strtrim(cellstr(num2str([round(x(:),3,'significant') round(y(:),3,'significant')],'(%df3,%df3)')));
text(x,y,strValues,'HorizontalAlignment','center','FontSize',14);
fp(1).LineWidth=3;

 채택된 답변

Adam Danz
Adam Danz 2020년 10월 22일
You could rotate the text to 45 degrees (or any angle) using
text(___, 'rotation',45)

댓글 수: 2

That is awesome! Thank you!!!
Adam Danz
Adam Danz 2020년 10월 23일
편집: Adam Danz 2020년 10월 23일
Glad I could help.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Annotations에 대해 자세히 알아보기

제품

태그

질문:

2020년 10월 22일

편집:

2020년 10월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by