代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/414010/11133490
lkv debug.lkv
-z -q -c -o"./Debug/1-10 Convolution.out" -x -i"c:/ti/C5500/bios/lib" -i"c:/ti/C5500/dsk5510/lib" -i"c:/ti/c5500/rtdx/lib" -i"c:/ti/c5500/cgtools/lib"
"C:\ti\myprojects\lab4\1-10 Convolution3\Debug\l
www.eeworm.com/read/414009/11133504
lkf debug.lkf
-z -q -c -o"./Debug/1-10 Convolution.out" -x -i"c:/ti/C5500/bios/lib" -i"c:/ti/C5500/dsk5510/lib" -i"c:/ti/c5500/rtdx/lib" -i"c:/ti/c5500/cgtools/lib"
"C:\ti\myprojects\lab4\1-10 Convolution2\Debug\l
www.eeworm.com/read/414009/11133510
log cc_build_debug.log
------------------------ 1-10 Convolution.pjt - Debug ------------------------
"c:\ti\c5500\cgtools\bin\cl55" -g -q -fr"C:/ti/myprojects/lab4/1-10 Convolution2/Debug" -d"_DEBUG" -@"Debug.lkf" "linc
www.eeworm.com/read/414009/11133512
lkv debug.lkv
-z -q -c -o"./Debug/1-10 Convolution.out" -x -i"c:/ti/C5500/bios/lib" -i"c:/ti/C5500/dsk5510/lib" -i"c:/ti/c5500/rtdx/lib" -i"c:/ti/c5500/cgtools/lib"
"C:\ti\myprojects\lab4\1-10 Convolution2\Debug\l
www.eeworm.com/read/334935/12561104
m convolm.m
function H = convolm(x, num_zeros, pad)
%CONVOLM Make convolution matrix, optionally padded with zeros
%-------
% Usage: H = convolm(X, P, )
%
% H : convolution matrix with P
www.eeworm.com/read/334931/12561293
m program_11_5.m
% Program 11_11
% Computation of Linear Convolution Using DFT
%
g = input('Type in first sequence = ');
h = input('Type in second sequence = ');
ga = [g zeros(1,length(h)-1)];
ha = [h zeros(1,le
www.eeworm.com/read/334931/12561552
m program_11_5.m
% Program 11_11
% Computation of Linear Convolution Using DFT
%
g = input('Type in first sequence = ');
h = input('Type in second sequence = ');
ga = [g zeros(1,length(h)-1)];
ha = [h zeros(1,le
www.eeworm.com/read/134896/13971326
m ilap.m
%ILAP Convolve with Laplacian kernel
%
% im2 = ILAP(image)
%
% Return the image after convolution with the Laplacian kernel
% 0 -1 0
% -1 4 -1
% 0 -1 0
%
% SEE ALSO: ilog conv2
%
% Copyright (c)
www.eeworm.com/read/203482/15357974
m ilap.m
%ILAP Convolve with Laplacian kernel
%
% im2 = ILAP(image)
%
% Return the image after convolution with the Laplacian kernel
% 0 -1 0
% -1 4 -1
% 0 -1 0
%
% SEE ALSO: ilog conv2
%
% Copyright (c)
www.eeworm.com/read/203319/15361935
m conv_m.m
function [y,ny]=conv_m(x,nx,h,nh)
%Modified convolution routine for signal processing
%ny=support of y;
nyb=nx(1)+nh(1);
nye=nx(length(x))+nh(length(h));
ny=[nyb:nye];
y=conv(x,h);