plotting a simple Graph

조회 수: 2 (최근 30일)
Shimon Katzman
Shimon Katzman 2019년 12월 24일
댓글: Star Strider 2019년 12월 25일
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
madhan ravi
madhan ravi 2019년 12월 24일
You didn’t define My and you haven’t used the linspace() properly for Mx.
Shimon Katzman
Shimon Katzman 2019년 12월 24일
편집: Shimon Katzman 2019년 12월 24일
So what is the correct way?

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2019년 12월 24일
One problem is that ‘My’ is missing. Beyond that, the linspace arguments resulted in an empty vector for ‘Mx’.
It might be easier to plot this as an implicit function:
alpha=2.2;
Mx0=34.8262;
My0=15.7563;
Interaction_Function = @(Mx,My) (Mx./Mx0).^alpha+(My./My0).^alpha-1;
figure
fimplicit(Interaction_Function, [0 50 0 30])
ylim([0 30])
producing:
1plotting a simple Graph - 2019 12 24.png
That seems to produce the sort of plot you want. Make appropriate changes to the second agrument in the fimplicit call to get the result you want.
  댓글 수: 9
Shimon Katzman
Shimon Katzman 2019년 12월 25일
Wow Star. Thank you so much!!
You Are The Best!
Star Strider
Star Strider 2019년 12월 25일
As always, my pleasure!
I very much appreciate your compliment!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2019년 12월 24일
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
Shimon Katzman
Shimon Katzman 2019년 12월 24일
Hi, it doesnt plot the right graph :(
Image Analyst
Image Analyst 2019년 12월 24일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by