Shimmy vibrations stability chart

I need to obtain the following graphics using the formulas in the image. Just started using Matlab. I will be glad if you help

댓글 수: 5

Jon
Jon 2023년 7월 21일
If you haven't already completed it, please first complete the MATLAB On-Ramp training https://matlabacademy.mathworks.com/details/matlab-onramp/gettingstarted
Then make your best attempt to code a solution to your problem. Attach your code and any specific questions you have regarding the MATLAB implementation.
burak akkaya
burak akkaya 2023년 7월 23일
Good answer! Congratulations👏
Jon
Jon 2023년 7월 25일
If this answered your question, please accept the answer
burak akkaya
burak akkaya 2023년 8월 1일
Of course no
Jon
Jon 2023년 8월 1일
This is a very friendly and polite site. I'm not quite sure how to interpret the tone of your responses, but I'm feeling like maybe your responses are not in keeping with this. If I'm wrong please forgive, me. If not then please try to be respectful. People are only answering questions here as volunteers, motivated by their desire to help others learn more about MATLAB and to share working on interesting problems. In any case, if you want to get help with your problem, you generally have to give it a try, write some MATLAB code and then ask for help with the issues you encounter.

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

답변 (1개)

Garmit Pant
Garmit Pant 2023년 8월 22일

0 개 추천

Hello
It is my understanding that you are trying to reproduce the figure 5 given in the image attached. Given that there is no data available, it is not possible to reproduce the exact graph and model the exact equations. But since you are new to using MATLAB, you can refer to the following to try to plot 2D graphs.
You can plot mathematical equations and other data on 2D graphs using the ‘plot’ function. The following code snippet demonstrates how to plot a simple quadratic equation.
x = linspace(-2,2,100);
y = x.^2 + 5*x + 5;
plot(x,y)
xlabel X
grid on
ylabel Y
To plot implicit functions, you can use the function ‘fimplicit’. The following code snippet demonstrates how to plot a simple implicit function.
x = linspace(-2,2,100);
F = @(x,y) x.*y + y.^2.*x +5;
fimplicit(F)
xlabel X
grid on
ylabel Y
You can refer to the following documentation pages to further understand the functionalities of the above-mentioned functions:

카테고리

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

질문:

2023년 7월 21일

답변:

2023년 8월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by