Scilab 6.0.0
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
polfact
minimal factors
Syntax
[f]=polfact(p)
Arguments
- p
- polynomial 
- f
- vector - [f0 f1 ... fn]such that- p=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 >> |