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
toeplitz
toeplitz行列
呼び出し手順
A=toeplitz(c [,r])
パラメータ
- a,c,r
定数, 多項式 または文字列行列
説明
最初の行をr
,
最初の列をc
とするToeplitz行列を返します.
c(1)
はr(1)
に等しい
必要があります.
toeplitz(c)
は対称Toeplitz行列を返します.
例
A=toeplitz(1:5); T=toeplitz(1:5,1:2:7);T1=[1 3 5 7;2 1 3 5;3 2 1 3;4 3 2 1;5 4 3 2]; T-T1 s=poly(0,'s'); t=toeplitz([s,s+1,s^2,1-s]); t1=[s,1+s,s*s,1-s;1+s,s,1+s,s*s;s*s,1+s,s,1+s;1-s,s*s,1+s,s] t-t1 t=toeplitz(['1','2','3','4']); t1=['1','2','3','4';'2','1','2','3';'3','2','1','2';'4','3','2','1']
参照
- matrix — ベクトルまたは行列を異なる大きさの行列に成形する
Report an issue | ||
<< sub2ind | elementarymatrices | zeros >> |