﻿功能:多项式因式分解

格式:PolyFactor(f)
f : 符号表达式句柄

例子:

f = @x^3+5*x^2-2*x-24;
s = PolyFactor(f)//回车得到如下结果
s =
"(x+3)*(x-2)*(x+4)"