
How can I replicate this plot using the supplied equations?
1 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Mathieu NOE
2025-3-28
编辑:Mathieu NOE
2025-3-28
hello
do you mean the last plot ?

here a simple code that replicate it : (there is still a bit of work if you want all the details )
y= linspace(0,1.22,100);
E = y+0.051./y.^2;
plot(y,y,'k--'); % diagonal
hold on
plot(E,y,'b','linewidth',2);
xlabel('E')
ylabel('y')
grid on
hold off
xlim([0 1.83])
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!