How can I replicate this plot using the supplied equations?

2 visualizaciones (últimos 30 días)
Hoda
Hoda el 28 de Mzo. de 2025
Comentada: Mathieu NOE el 2 de Abr. de 2025

Respuestas (1)

Mathieu NOE
Mathieu NOE el 28 de Mzo. de 2025
Editada: Mathieu NOE el 28 de Mzo. de 2025
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])

Categorías

Más información sobre Annotations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by