⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 build_toep.m

📁 curves ti si s a nice code.
💻 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 + -