Plot the line and give maximum value of y and x at which y is maximum?
2 次查看(过去 30 天)
显示 更早的评论
In this I want to put a line passes through maximum value of y and x axis for both plots, want to know the value of x at y=0 and ymax in legend or somewhere in figure?
回答(1 个)
Azzi Abdelmalek
2013-8-9
编辑:Azzi Abdelmalek
2013-8-9
Edit
Example
close
x=0:0.1:10;
y1=sin(x)./(x+1);
y2=sin(x-1)./(x+1);
plot(x,y1);
hold on
plot(x,y2,'r')
a=get(gca,'xlim')
[b1,idx1]=max(y1);
[b2,idx2]=max(y2);
i1=find(abs(y1)<0.01,1);
i2=find(abs(y2)<0.01,1);
plot(a,[b1 b1]);
plot(a,[b2 b2],'r');
leg1=sprintf('x=%.2f, y=ymax1=%.2f',x(idx1),b1)
leg2=sprintf('x=%.2f, y=ymax2=%.2f',x(idx2),b2)
legend({leg1,leg2})
hold off
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!