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