Scilab 6.0.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
gcd
最大公約数を計算
呼び出し手順
[pgcd,U]=gcd(p)
引数
- p
多項式行ベクトル
p=[p1,..,pn]
または整数行ベクトル (8型)
説明
[pgcd, U] = gcd(p)
は,
p
の要素の最大公約数(pgcd
)
および以下のような最小次数の
(多項式の逆を有する)ユニモジュラ行列 U
を計算します.
p*U=[0 ... 0 pgcd]
数学的には,ユニモジュラ 行列
U
は,
行列式 +1
or -1
を有する
正方整数行列です.
実数配列p
の最大公約数は,
gcd
をコールする前に, p = inv_coeff(p, 0)
により
多項式に変換することにより得られます.
例
Report an issue | ||
<< factorial | Discrete mathematics | lcm >> |