计算卷积 计算卷积

源代码在线查看: convolution1.m

软件大小: 737 K
上传用户: xbfitliu
关键词: 计算 卷积
下载地址: 免注册下载 普通下载 VIP

相关代码

				function y=convolution1(x,h)
				
				M=length(x);
				N=length(h);
				temp=zeros(1,M+N-1);
				for n=1:1:M+N-1
				    for m=1:1:M
				        k=n-m+1;
				        if(k>=1&&k				            temp(n)=temp(n)+x(m)*h(n-m+1);
				        end
				    end
				end
				
				y=temp;			

相关资源