フィルターのクリア

I am trying to run the following algorithm, but it is not providing me the absolute answer as given in the link https://se​.mathworks​.com/help/​symbolic/s​olve-an-al​gebraic-eq​uation.ht

1 回表示 (過去 30 日間)
HINA
HINA 2018 年 11 月 22 日
編集済み: HINA 2018 年 11 月 22 日
syms x
[solx, param, cond] = solve(cos(x) == -sin(x), x, 'ReturnConditions', true)

回答 (1 件)

madhan ravi
madhan ravi 2018 年 11 月 22 日
Use vpasolve() for numerical solution
syms x
solx = vpasolve(cos(x) == -sin(x), x)
  1 件のコメント
HINA
HINA 2018 年 11 月 22 日
編集済み: HINA 2018 年 11 月 22 日
Thanks for your answer, but the problem is that I can just get one solution by using this command but I am looking for all the solutions for the given function. Check t5he following link
https://se.mathworks.com/help/symbolic/solve-an-algebraic-equation.html

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

カテゴリ

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

製品


リリース

R2013a

Community Treasure Hunt

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

Start Hunting!

Translated by