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

📄 buildhank.m

📁 curves ti si s a nice code.
💻 M
字号:
function H = buildHank(c, k, n)%     H = buildHank(c, k, n);%% builds a hankel matrix of dimension n, around b, k as in lpjn paper%% 4/26/02, L. Perrone.%% Modifications:% 5/25/01, J. Nagy%          Some cosmetic changes to incorporate into RestoreTools%m = length(c);col = zeros(n,1);col(1:m-k) = c(k+1:m);row = zeros(n,1);row(n-k+2:n) = c(1:k-1);H = hankel(col, row);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -