how to factor a analytic expression ?
Mostrar comentarios más antiguos
clear all
clc
syms x
A=x.^2+x
i would like to factor A in a way that's A =x(x+1)
thank you
Respuestas (1)
Torsten
el 9 de Mzo. de 2022
0 votos
F = factor(A) ;
A = F(1)*F(2);
does not work ?
1 comentario
Rabih Sokhen
el 9 de Mzo. de 2022
Categorías
Más información sobre Calculus en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!