Shimmy vibrations stability chart

4 ビュー (過去 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 Center および File ExchangeLabels and Styling についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by