Shimmy vibrations stability chart

4 views (last 30 days)
burak akkaya
burak akkaya on 21 Jul 2023
Answered: Garmit Pant on 22 Aug 2023
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 Comments
Jon
Jon on 1 Aug 2023
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.

Sign in to comment.

Answers (1)

Garmit Pant
Garmit Pant on 22 Aug 2023
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:

Categories

Find more on Labels and Styling in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!