I want to plot the above equation in matlab but i dont know how to plot please help or provide me code

 채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2012년 11월 15일

8 개 추천

x=0:0.1:10;
y=exp(-x.^2);
plot(x,y)

댓글 수: 3

Hamna Aziz
Hamna Aziz 2021년 10월 9일
(x^2)+3*(y^3)-25*z=100;
i am assigning this eqn a value. but matlab is giving me error every time. how to use this eqn in matlab?
Rik
Rik 2021년 10월 9일
Is this the exact code you're using? Because this isn't a valid Matlab syntax.
Steven Lord
Steven Lord 2021년 10월 9일
Take a look at fimplicit3.

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

추가 답변 (1개)

Manka'a Abongnwi
Manka'a Abongnwi 2023년 6월 9일

0 개 추천

y = be ax sin(bx)(0.012x4 0.15x3 + 0.075x2 + 2.5x)

댓글 수: 3

Walter Roberson
Walter Roberson 2023년 6월 9일
y = b.*exp(a.*x).*sin(a.*x).*(0.012*x.^4 + 0.075*x.^2 + 2.5*x);

Possibly

Manka'a Abongnwi
Manka'a Abongnwi 2023년 6월 14일
Wow after using the formula given by sir, everything worked well except the place to plot a graph of y and z versus x that's difficult
Walter Roberson
Walter Roberson 2023년 6월 14일
plot3()... except that you do not show any z variable.

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

카테고리

도움말 센터File Exchange에서 Graphics Objects에 대해 자세히 알아보기

제품

태그

질문:

2012년 11월 15일

댓글:

2023년 6월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by