hermit - Hermite form (original) (raw)
Scilab 5.3.3
- Scilab help
- Polynomials
- bezout
- clean
- cmndred
- coeff
- coffg
- colcompr
- degree
- denom
- derivat
- determ
- detr
- diophant
- factors
- gcd
- hermit
- horner
- hrmt
- htrianr
- invr
- lcm
- lcmdiag
- ldiv
- numer
- pdiv
- pol2des
- pol2str
- polfact
- residu
- roots
- rowcompr
- sfact
- simp
- simp_mode
- sylm
- systmat
Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
See the recommended documentation of this function
Scilab help >> Polynomials > hermit
Calling Sequence
Arguments
A
polynomial matrix
Ar
triangular polynomial matrix
U
unimodolar polynomial matrix
Description
Hermite form: U is an unimodular matrix such that A*U is in Hermite triangular form:
The output variable is Ar=A*U.
Warning: Experimental version
Examples
s=poly(0,'s'); p=[s, s*(s+1)^2, 2*s^2+s^3]; [Ar,U]=hermit(p'*p); clean(p'pU), det(U)