フィルターのクリア

How to solve equation contains sin and cos?

1 回表示 (過去 30 日間)
Abdulaziz Abutunis
Abdulaziz Abutunis 2016 年 3 月 3 日
コメント済み: Star Strider 2016 年 3 月 3 日
Hello MATLAB experts,
I am seeking you assistance in solving an equation that has sin and cos. The equation and the commands and the resulted error are as follow
syms a b solve((350+1-((a*0.984807753012208)+(b*cosd(asind(((a*0.173648177666930))/b))))),b) ??? Error using ==> asind at 15 Argument should be real.
Thanks in advance, Aziz

採用された回答

Star Strider
Star Strider 2016 年 3 月 3 日
The cosd function does not exist in the Symbolic Math Toolbox.
Try this:
syms a b
b_solved = solve((350+1-((a*0.984807753012208)+(b*cos(asin(((a*0.173648177666930))/b))))),b);
  2 件のコメント
Abdulaziz Abutunis
Abdulaziz Abutunis 2016 年 3 月 3 日
Thank you Star. you are right
Star Strider
Star Strider 2016 年 3 月 3 日
My pleasure.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by