how to factor a analytic expression ?
Mostra commenti meno recenti
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
Risposte (1)
Torsten
il 9 Mar 2022
0 voti
F = factor(A) ;
A = F(1)*F(2);
does not work ?
1 Commento
Rabih Sokhen
il 9 Mar 2022
Categorie
Scopri di più su Calculus in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!