Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
polfact
minimal factors
Calling Sequence
[f]=polfact(p)
Arguments
- p
polynomial
- f
vector
[f0 f1 ... fn]
such thatp=prod(f)
- f0
constant
- fi
polynomial
Description
f=polfact(p)
returns the minimal factors of p i.e. f=[f0 f1 ... fn]
such
that p=prod(f)
Examples
x = poly(0,"x") polfact(x^2-1) polfact(x^7-1)
See Also
Report an issue | ||
<< pol2str | Polynomials | poly >> |