Shimmy vibrations stability chart

조회 수: 5 (최근 30일)
burak akkaya
burak akkaya 2023년 7월 21일
답변: Garmit Pant 2023년 8월 22일
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
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일
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:

카테고리

Help CenterFile Exchange에서 Labels and Styling에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by