代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/331439/12828581
m conv.m
function C = conv(A, B)
% CONV Convolution and polynomial multiplication.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/143548/12862108
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// Convolution.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stda
www.eeworm.com/read/330869/12863343
m lconv.m
function y = lconv(x, h)
% lconv -- perform a linear convolution with ffts
%
% Usage
% y = lconv(x, h)
%
% Inputs
% x, h input vectors
%
% Outputs
% y the linear convolution of x an
www.eeworm.com/read/330869/12863467
m lconv.m
function y = lconv(x, h)
% lconv -- perform a linear convolution with ffts
%
% Usage
% y = lconv(x, h)
%
% Inputs
% x, h input vectors
%
% Outputs
% y the linear convolution of x an
www.eeworm.com/read/330414/12895312
h convolve.h
/*
********************************************************************************
*
* GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
* R99 Ve
www.eeworm.com/read/138743/5813979
m mmakebrownian.m
function fbm = MakeBrownian(N,H)
% MakeBrownian -- Create Fractional Brownian Signal
% Usage
% fBr = MakeBrownian(n,H)
% Inputs
% n signal length
% H fbm exponent (0
www.eeworm.com/read/136827/5847125
h convolve.h
/**********************************************************************
** Copyright (C) 2000-2005 Trolltech AS and its licensors.
** All rights reserved.
**
** This file is part of the Qtopia Environ
www.eeworm.com/read/488117/6496928
m program_8_11.m
% Program 8_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,len
www.eeworm.com/read/488224/6498643
m program_11_11.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/482678/6621228
m reduce.m
function res = reduce(im,bfilt)
%
% function res = reduce(im,bfilt)
%
% Separable convolution and subsampling by a factor of two
% im: input image
% bfilt: convolution kernel (vector).
%