How can I replicate this plot using the supplied equations?

2 ビュー (過去 30 日間)
Hoda
Hoda 2025 年 3 月 28 日
コメント済み: Mathieu NOE 2025 年 4 月 2 日

回答 (1 件)

Mathieu NOE
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 ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by