📄 build_toep.m
字号:
function T = build_toep( c, k, n )%% T = build_toep( c, k, n );%% Given:% c - the nonzero part of a central column of a banded Toeplitz% matrix% k - index of c containing the diagonal element of T% n - dimension of the banded Toeplitz matrix%% The banded Toeplitz matrix is constructed explicitly.%% J. Nagy 2/11/02m = length( c );col = zeros(n,1);row = col';col(1:m-k+1,1) = c(k:m);row(1,1:k) = c(k:-1:1)';T = toeplitz( col, row );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -