How to determine unknown value from an equation

1 回表示 (過去 30 日間)
Vinay Srinivasan
Vinay Srinivasan 2019 年 10 月 4 日
コメント済み: Vinay Srinivasan 2019 年 10 月 4 日
Power_roadatmaxspeed=((2.73*C_r*m)+(0.0126*C_d*a*S^2))*S
The above written is my equation. I have given values for C_r, m ,C_d , a initially as they are given data of a vehicle .I found the Power_roadatmaxspeed now. So I want to find S. How to determine through matlab ?

採用された回答

Matt J
Matt J 2019 年 10 月 4 日
編集済み: Matt J 2019 年 10 月 4 日
It's a cubic polynomial, so you can use roots().
  2 件のコメント
Walter Roberson
Walter Roberson 2019 年 10 月 4 日
roots([0.0126*C_d*a, 0, 2.73*C_r*m, -Power_roadatmaxspeed ])
Vinay Srinivasan
Vinay Srinivasan 2019 年 10 月 4 日
Thank you so much

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePolynomials についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by