y = e^(-x^2)
이전 댓글 표시
I want to plot the above equation in matlab but i dont know how to plot please help or provide me code
채택된 답변
추가 답변 (1개)
Manka'a Abongnwi
2023년 6월 9일
0 개 추천
y = be ax sin(bx)(0.012x4 0.15x3 + 0.075x2 + 2.5x)
댓글 수: 3
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
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
2023년 6월 14일
plot3()... except that you do not show any z variable.
카테고리
도움말 센터 및 File Exchange에서 Graphics Objects에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!