hermit - Hermite form (original) (raw)

Scilab 5.3.3

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)

See Also