how to factor a analytic expression ?
Ältere Kommentare anzeigen
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
Antworten (1)
Torsten
am 9 Mär. 2022
0 Stimmen
F = factor(A) ;
A = F(1)*F(2);
does not work ?
1 Kommentar
Rabih Sokhen
am 9 Mär. 2022
Kategorien
Mehr zu Calculus finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!