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

📄 maketoeplitz.m

📁 Mathematical Methods by Moor n Stiling.
💻 M
字号:
function [H] = maketoeplitz(y,m,n)
% 
% Form a toeplitz matrix from the input data y
%
% function [H] = maketoeplitz(y,m,n)
%
% y = input data = [y1 y2 ...] (a series of vectors in a _row_)
% m = number of block rows in H
% n = number of block columns in H

% Copyright 1999 by Todd K. Moon

ny = length(y);
if(ny < n+m-1)
  error('Error: insufficient data for a Toeplitz matrix of this size');
end
 
H = [];
for i=1:m
  row = y(:,i+n-1:-1:i);
  H = [H;row];
end

⌨️ 快捷键说明

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