How to factor symbolic equations

조회 수: 3 (최근 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 CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by