Scilab 5.4.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
clean
行列を消去 (小さなエントリをゼロに丸める)
呼び出し手順
B=clean(A [,epsa [,epsr]])
パラメータ
- A
数値行列(スカラー, 多項式, 疎行列...)
- epsa,epsr
実数. 消去の際の閾値 (デフォルト値はそれぞれ 1.d-10および 1.d-10)
説明
この関数は,
多項式(もしくは多項式行列または有理行列)において
絶対値< epsa
または
相対値< epsr
の係数を全て消去(ゼロに設定)します.
(相対とは係数の1次ノルムに関する相対値を意味します)
デフォルト値は epsa=1.d-10
および
epsr=1.d-10;
です.
(多項式でない)定数行列の場合,clean(A,epsa)
は
epsa
より小さなA
のエントリを
全てゼロに設定します.
Report an issue | ||
<< ceil | Floating point | double >> |