代码搜索:convolution
找到约 1,402 项符合「convolution」的源代码
代码结果 1,402
www.eeworm.com/read/299916/3849393
m ex052300.m
% Chapter 05: Example 5.23 High speed convolution
%
conv_time = zeros(1,150); fft_time = zeros(1,150);
%
for N = 1:150
tc = 0; tf=0;
L = 2*N-1; nu = round((log10(L)/log10(2))+0.45); L =
www.eeworm.com/read/268260/11146779
m ex052300.m
% Chapter 05: Example 5.23 High speed convolution
%
conv_time = zeros(1,150); fft_time = zeros(1,150);
%
for N = 1:150
tc = 0; tf=0;
L = 2*N-1; nu = round((log10(L)/log10(2))+0.45); L =
www.eeworm.com/read/361299/10058833
m ex052300.m
% Chapter 05: Example 5.23 High speed convolution
%
conv_time = zeros(1,150); fft_time = zeros(1,150);
%
for N = 1:150
tc = 0; tf=0;
L = 2*N-1; nu = round((log10(L)/log10(2))+0.45); L = 2^nu;
www.eeworm.com/read/164099/10129312
m c2ex5.m
% Plot of the convolution process (Example 2-5)
%
clf
hold off
del_t = .5;
step = 0.005001;
t = -10.1:step:10.1;
L=length(t);
tp = [2*t(1):step:2*t(L)];
tpp = [3*t(1):step:3*t(L)];
ts = cmb_fn(t,del_t
www.eeworm.com/read/257423/6356464
m c2ex5.m
% Plot of the convolution process (Example 2-5)
%
clf
hold off
del_t = .5;
step = 0.005001;
t = -10.1:step:10.1;
L=length(t);
tp = [2*t(1):step:2*t(L)];
tpp = [3*t(1):step:3*t(L)];
ts = cmb_fn(t,del_t
www.eeworm.com/read/156653/11786063
m ex052300.m
% Chapter 05: Example 5.23 High speed convolution
%
conv_time = zeros(1,150); fft_time = zeros(1,150);
%
for N = 1:150
tc = 0; tf=0;
L = 2*N-1; nu = round((log10(L)/log10(2))+0.45); L = 2^nu;
www.eeworm.com/read/295657/8147837
m c2ex5.m
% Plot of the convolution process (Example 2-5)
%
clf
hold off
del_t = .5;
step = 0.005001;
t = -10.1:step:10.1;
L=length(t);
tp = [2*t(1):step:2*t(L)];
tpp = [3*t(1):step:3*t(L)];
ts = cmb_fn(t,del_t
www.eeworm.com/read/210914/4946960
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/444483/1733203
plg dtoa.plg
礦ision3 Build Log
Project:
C:\Work\ARM\Philips Course Image\Keil ARM Compiler examples\Solution\convolution\DtoA.uv2
Project File Date: 01/14/2005
O
www.eeworm.com/read/403017/2316533
m circonv.m
function y = circonv(x1, x2)
% Develops a sequence y obtained by the circular
% convolution of two equal-length sequences x1 and x2
L1 = length(x1);
L2 = length(x2);
if L1 ~= L2, error('Sequences