フィルターのクリア

How to factor symbolic equations

6 ビュー (過去 30 日間)
Ryan Magnotte
Ryan Magnotte 2021 年 11 月 10 日
回答済み: Chunru 2021 年 11 月 11 日
I'm trying to factor a symbolic equation but I keep getting errors.
the code is basically this
syms c
SE1=c^2-2*c+1;
SQ1=SE1==25;
factor(SQ1)
and the error I get is
Error using mupadengine/feval_internal
Invalid argument.
Error in sym/factor (line 92)
l = feval_internal(symengine, 'factor', xsym, opt);
I can find nothing online about this issue so either I'm missing something obvious or I'm not searching with the right words.

採用された回答

Chunru
Chunru 2021 年 11 月 11 日
syms c
SE1=c^2-2*c+1;
SQ1=SE1==25;
% you can factor a symbolic function but not an equation
factor(SE1)
ans = 
factor(SE1-25)
ans = 

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by