Effacer les filtres
Effacer les filtres

How to factor symbolic equations

6 vues (au cours des 30 derniers jours)
Ryan Magnotte
Ryan Magnotte le 10 Nov 2021
Réponse apportée : Chunru le 11 Nov 2021
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.

Réponse acceptée

Chunru
Chunru le 11 Nov 2021
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 = 

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by