How can I replicate this plot using the supplied equations?

조회 수: 1 (최근 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 CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by