?? 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 + -