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

📄 circonvt.m

📁 matlab的一些基础程序
💻 M
字号:
function [y]=circonvt(x1,x2,N)
%[y]=cirshftt(x,m,N)
%y=output sequence containing the
if length(x1)>N 
   error('N must be >= the length of x1')
end
%check for length of x2
if length(x2)>N 
   error('N must be >= the length of x2')
end

x1=[x1 zeros(1,N-length(x1))];
x2=[x2 zeros(1,N-length(x2))];
m=[0:1:N-1];
x2=x2(mod(-m,N)+1);
H=zeros(N,N); 
for n=1:1:N;
   H(n,:)=cirshftt(x2,n-1,N);
end;
y=x1*H';

⌨️ 快捷键说明

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