📄 convolve.m
字号:
% convolve() - convolve two matrices (normalize by the sum of convolved % elements to compensate for border effects).%% Usage:% >> r = convolve( a, b );%% Inputs:% a - first input vector% b - second input vector%% Outputs:% r - result of the convolution%% Author: Arnaud Delorme, CNL / Salk Institute, 2001%% See also: conv2(), conv()%123456789012345678901234567890123456789012345678901234567890123456789012% Copyright (C) 2001 Arnaud Delorme, Salk Institute, arno@salk.edu%% This program is free software; you can redistribute it and/or modify% it under the terms of the GNU General Public License as published by% the Free Software Foundation; either version 2 of the License, or% (at your option) any later version.%% This program is distributed in the hope that it will be useful,% but WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the% GNU General Public License for more details.%% You should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA% $Log: convolve.m,v $% Revision 1.4 2002/10/21 01:55:17 arno% making it work%% Revision 1.3 2002/10/21 01:45:45 arno% remove it%% Revision 1.2 2002/07/29 22:29:25 arno% put bug%% Revision 1.1 2002/04/05 17:39:45 jorn% Initial revision%% 01-25-02 reformated help & license -ad function R = convolve( A, B )% size of B must be odd% convolve A and B (normalize by the sum of convolved elements)% -------------------------------------------------------------R = zeros( size(A) );for index = 1:length(A) sumconvo = 0; for indexB = 1:length(B) indexconvo = indexB-1-round(length(B)/2); indexA = index + indexconvo+1; if indexA > 0 & indexA <= length(A) R(index) = R(index) + B(indexB)*A(indexA); sumconvo = sumconvo + B(indexB); end; end; R(index) = R(index) / sumconvo;end;return;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -