Resolving a non-linear equations

How can I solve the following equation using Matlab:

1 件のコメント

Alan Stevens
Alan Stevens 2020 年 11 月 13 日
You need to provide more detail. What is Dm? What is F(M) and howdoes it connect with the first equation? Are you trying to find M? ...

サインインしてコメントする。

回答 (1 件)

Alan Stevens
Alan Stevens 2020 年 11 月 17 日

0 投票

Do you mean you want to find the value(s) of M that make the function F(M) = 0.8M(1+M^2)-10 equal to zero? If so then use Matlab's roots function
% F = 0.8*M^3 + 0.8*M - Dm;
% F = 0.8*M^3 + 0*M^2 + 0.8*M -Dm
Dm = 10;
coeffs = [0.8 0 0.8 -10];
M = roots(coeffs);
disp(M)

カテゴリ

ヘルプ センター および File ExchangeNumerical Integration and Differential Equations についてさらに検索

質問済み:

2020 年 11 月 13 日

編集済み:

2020 年 11 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by