how to solve equation in syms
1 回表示 (過去 30 日間)
古いコメントを表示
i know the question is kinda stupid but very much appreciated if somebody could helps
syms x;
cos(10+x-x)
the ans keep showing "cos(10)" but i want it to be solved like -0.839071529076452
0 件のコメント
採用された回答
madhan ravi
2019 年 4 月 7 日
syms x pi
cos(pi+x-x)
3 件のコメント
madhan ravi
2019 年 4 月 7 日
編集済み: madhan ravi
2019 年 4 月 7 日
syms x pi
vpa(cos(10+x-x)) % will match the result in your edited question which was after the answer was given
double(cos(10+pi-pi)) % use double() to convert the result into decimal which of type double because syms result in the class of type sym
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!