Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
tril
行列の下三角部
呼び出し手順
tril(x [,k])
引数
- x
行列 (実数, 複素数, 多項式, 有理数)
- k
整数 (デフォルト値 0)
説明
行列の下三角部. tril(x,k)
は
k番目の対角線以下のエントリにより作成されます :
k>0 (上三角) および
k<0 (主対角以下の対角線).
例
s=poly(0,'s'); tril([s,s;s,1]) tril([1/s,1/s;1/s,1])
Report an issue | ||
<< squeeze | matrixmanipulation | triu >> |