Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab Help >> Polynomials > htrianr

htrianr

triangularization of polynomial matrix

Syntax

[Ar, U, rk] = htrianr(A)

Arguments

A

polynomial matrix

Ar

polynomial matrix

U

unimodular polynomial matrix.

rk

integer, normal rank of A

Description

triangularization of polynomial matrix A.

A is [m,n] , m ≤ n.

Ar=A*U

Warning: there is an elimination of "small" terms (see function code).

Examples

x = poly(0,'x');
M = [x ; x^2 ; 2+x^3]*[1, x-2, x^4];
[Mu,U,rk] = htrianr(M)
det(U)
M*U(:,1:2)

See also

  • hrmt — gcd of polynomials
  • colcompr — column compression of polynomial matrix
Report an issue
<< hrmt Polynomials inv_coeff >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Jan 03 14:23:25 CET 2022