plotting a simple Graph
Mostrar comentarios más antiguos
Hi everyone,
Trying to plot a graph unsucssesfully :((
alpha=2.2;
Mx0=34.8262;
My0=15.7563;
Mx=linspace(0,50,0.0001);
Interaction_Curve=(Mx./Mx0).^alpha+(My./My0).^alpha-1
plot(Interaction_Curve,Mx)

Thank You Very much
2 comentarios
madhan ravi
el 24 de Dic. de 2019
You didn’t define My and you haven’t used the linspace() properly for Mx.
Shimon Katzman
el 24 de Dic. de 2019
Editada: Shimon Katzman
el 24 de Dic. de 2019
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 24 de Dic. de 2019
Try this:
alpha = 2.2;
Mx0 = 34.8262;
My0 = 15.7563;
Mx = linspace(0,50, 1000);
My = linspace(0,50, 1000); % Not sure what My should be!!!
Interaction_Curve = (Mx./Mx0).^alpha+(My./My0).^alpha-1
plot(Mx, Interaction_Curve, 'b-', 'LineWidth', 2)
grid on;
Be sure to define My because I just guessed incorrectly.
2 comentarios
Shimon Katzman
el 24 de Dic. de 2019
Image Analyst
el 24 de Dic. de 2019
I know. Because I don't have the value of the My variable. That's why I asked you to define it. What is it? But doesn't matter since it looks like Star figured it out.
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
