Scilab-Branch-6.1-GIT
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
hermit
Hermite form
Syntax
[Ar, U] = hermit(A)
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
--> clean(p'*p*U) ans = 0 0 s² 0 0 s² +2s³ +s⁴ 0 0 2s³ +s⁴ --> det(U) ans = 1
| Report an issue | ||
| << factors | Polynomials | horner >> | 
