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 > hrmt

hrmt

多項式の最大公約数

呼び出し手順

[pg,U]=hrmt(v)

Parameters

v

多項式の行,すなわち,1xk 多項式行列

pg

多項式

U

ユニモジュラ多項式行列

説明

[pg,U]=hrmt(v) は,多項式vについて ユニモジュラ行列Uおよび v*U = [pg,0]となるような, pg = 多項式の行の最大公約数を返します.

x=poly(0,'x');
v=[x*(x+1),x^2*(x+1),(x-2)*(x+1),(3*x^2+2)*(x+1)];
[pg,U]=hrmt(v);U=clean(U)
det(U)

参照

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

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