代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/371704/2779274
m myconvmtx.m
function matrix=myconvmtx(w,n)
% Function creates convolution matrix of the form
% | w1 w2 w3 0 0 0|
% | 0 w1 w2 w3 0 0|
% | 0 0 w1 w2 w3 0|
% | 0 0
www.eeworm.com/read/296477/8101291
asv ex3_3.asv
% 关闭所有图形窗口并清除内存变量
close all;
clear all;
% 系统开环传递函数描述
numo=[0 0 0 0 0.86];
den1=[1 0];
den2=[0.36,1];
den3=[0.3906 0.75 1];
deno=conv(den1,conv(den2,den3)); % Convolution and polynomial multipl
www.eeworm.com/read/296477/8101382
m ex3_3.m
% 关闭所有图形窗口并清除内存变量
close all;
clear all;
% 系统开环传递函数描述
numo=[0 0 0 0 0.86];
den1=[1 0];
den2=[0.36,1];
den3=[0.3906 0.75 1];
deno=conv(den1,conv(den2,den3)); % Convolution and polynomial multipl
www.eeworm.com/read/309003/3708422
m aconv2.m
function out = aconv2(img,f1,f2,s1,s2)
% aconv2 -- 2-D seperable convolution
% Usage
% out = aconv2(img,f1,f2,s1,s2);
% Inputs
% img m x n image,
% f1 column filter
% f2
www.eeworm.com/read/427864/1964759
m aconv2.m
function out = aconv2(img,f1,f2,s1,s2)
% aconv2 -- 2-D seperable convolution
% Usage
% out = aconv2(img,f1,f2,s1,s2);
% Inputs
% img m x n image,
% f1 column filter
% f2
www.eeworm.com/read/384673/2598498
m aconv2.m
function out = aconv2(img,f1,f2,s1,s2)
% aconv2 -- 2-D seperable convolution
% Usage
% out = aconv2(img,f1,f2,s1,s2);
% Inputs
% img m x n image,
% f1 column filter
% f2
www.eeworm.com/read/469698/6925534
m convsys.m
function [Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2)
%
% [Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2)
%
% This algorithm gives the convolution of two state space representations
%
%
www.eeworm.com/read/440896/7679052
m p2_4.m
% Program P2_4.m
% Convolution Property of DTFT
close all;clear all;
w = -pi:2*pi/255:pi;
x1 = [1 3 5 7 9 11 13 15 17]; x2 = [1 -2 3 -2 1];
y = conv(x1,x2);
h1 = freqz(x1, 1, w); h2 = freqz(x2,
www.eeworm.com/read/388457/8608002
m p3_4.m
% Program P3_4
% Convolution Property of DTFT
clf;
w = -pi:2*pi/255:pi;
x1 = [1 3 5 7 9 11 13 15 17];
x2 = [1 -2 3 -2 1];
y = conv(x1,x2);
h1 = freqz(x1, 1, w);
h2 = freqz(x2, 1, w);
hp = h1.
www.eeworm.com/read/387887/8649443
m p3_4.m
% Program P3_4
% Convolution Property of DTFT
clf;
w = -pi:2*pi/255:pi;
x1 = [1 3 5 7 9 11 13 15 17];
x2 = [1 -2 3 -2 1];
y = conv(x1,x2);
h1 = freqz(x1, 1, w);
h2 = freqz(x2, 1, w);
hp = h1.