フィルターのクリア

"simplify" doesn't work properly

29 ビュー (過去 30 日間)
ercan duzgun
ercan duzgun 2018 年 8 月 15 日
Dear Matlab users;
I have a problem when I use symbolic toolbox. When it gives the result in symbolic, even though I use simplify comment, it doesn't work properly as I want it to be.
I will give a similar example here, since the actual one is a bit long:
2*(sin(x)*1/2+cos(x)*1/2)
When I calculate the result myself by hand, I get;
sin(x)+cos(x) .
But MATLAB gives the result as I written above.
How can I fix this?
Thanks in advance.
  1 件のコメント
Christopher Creutzig
Christopher Creutzig 2018 年 12 月 3 日
It would probably help to give an actual working example of your problem.

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

採用された回答

Star Strider
Star Strider 2018 年 8 月 15 日
編集済み: Star Strider 2018 年 8 月 15 日
Choosing the correct function is important. Without knowing your actual expression (so I do not know if this is appropriate for it), expand or isolate rather than simplify may be most appropriate:
syms x
Eq = 2*(sin(x)*1/2+cos(x)*1/2);
R = expand(Eq)
R =
cos(x) + sin(x)
  1 件のコメント
Christopher Creutzig
Christopher Creutzig 2018 年 12 月 3 日
For this input, Eq is already in the expected form.

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

その他の回答 (1 件)

ercan duzgun
ercan duzgun 2018 年 8 月 15 日
Well, as I find out: the vpa comment fix this problem better.
  1 件のコメント
Star Strider
Star Strider 2018 年 8 月 15 日
The vpa function is certainly another option.

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

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by