Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.2 - 日本語

Change language to:
English - 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ヘルプ >> Polynomials > hermit

hermit

エルミート形式

呼び出し手順

[Ar,U]=hermit(A)

パラメータ

A

多項式行列

Ar

三角多項式行列

U

ユニモジュラ多項式行列

説明

エルミート形式: U は, A*Uがエルミート三角形式となるような ユニモジュラ行列です:

出力変数は Ar=A*Uです.

警告: 実験版

s=poly(0,'s');
p=[s, s*(s+1)^2, 2*s^2+s^3];
[Ar,U]=hermit(p'*p);
clean(p'*p*U), det(U)

参照

  • hrmt — 多項式の最大公約数
  • htrianr — 多項式行列の三角化
Report an issue
<< factors Polynomials horner >>

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:
Wed Apr 01 10:25:01 CEST 2015