最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Matlab卷積函數(shù)——conv2

2021-10-15 10:24 作者:有AI野心的電工和碼農(nóng)  | 我要投稿

功能:?是二維卷積運算函數(shù)(與convmtx2相似)。

如果a和b是兩個離散變量n1和n2的函數(shù),則關于a和b的二維卷積運算數(shù)學公式如下:

用法:

C = conv2(A,B)

C = conv2(hcol,hrow,A)

C = conv2(…,'shape')

C = conv2(A,B)計算數(shù)組A和B的卷積。如果一個數(shù)組描述了一個二維FIR濾波器,則另一個數(shù)組被二維濾波。當A的大小為[ma,na], B的大小為[mb,nb]時,C的大小為[ma+mb-1,mb+nb-1]。‘shape’?見下表

例子:

s = [1 2 1; 0 0 0; -1 -2 -1];

A = zeros(10);

A(3:7,3:7) = ones(5);

H = conv2(A,s);

mesh(H)

Matlab的幫助:

conv2

2-D convolution

Syntax

C = conv2(A,B)

C = conv2(hcol,hrow,A)

C = conv2(…,'shape')

Description

C = conv2(A,B) computes the two-dimensional convolution of matrices A and B. If one of these matrices describes a two-dimensional finite impulse response (FIR) filter, the other matrix is filtered in two dimensions.

The size of C in each dimension is equal to the sum of the corresponding dimensions of the input matrices, minus one. That is, if the size of A is [ma,na] and the size of B is [mb,nb], then the size of C is [ma+mb-1,na+nb-1].

The indices of the center element of B are defined as floor(([mb nb]+1)/2).

C = conv2(hcol,hrow,A) convolves A first with the vector hcol along the rows and then with the vector hrow along the columns. If hcol is a column vector and hrow is a row vector, this case is the same as C = conv2(hcol*hrow,A).

C = conv2(…,'shape') returns a subsection of the two-dimensional convolution, as specified by the shape parameter:

fullReturns the full two-dimensional convolution (default).sameReturns the central part of the convolution of the same size as A.validReturns only those parts of the convolution that are computed without the zero-padded edges. Using this option, C has size [ma-mb+1,na-nb+1] when all(size(A) >= size(B)). Otherwise conv2 returns [].Note?If any of A, B, hcol, and hrow are empty, then C is an empty matrix [].

Algorithm

conv2 uses a straightforward formal implementation of the two-dimensional convolution equation in spatial form. If a and b are functions of two discrete variables, n1 and n2, then the formula for the two-dimensional convolution of a and b is

In practice however, conv2 computes the convolution for finite intervals.

Note that matrix indices in MATLAB always start at 1 rather than 0. Therefore, matrix elements A(1,1), B(1,1), and C(1,1) correspond to mathematical quantities?a?(0,0),?b?(0,0), and?c?(0,0).

Examples

For the 'same' case, conv2 returns the central part of the convolution. If there are an odd number of rows or columns, the "center" leaves one more at the beginning than the end.

This example first computes the convolution of A using the default ('full') shape, then computes the convolution using the 'same' shape. Note that the array returned using 'same' corresponds to the underlined elements of the array returned using the default shape.



Matlab卷積函數(shù)——conv2的評論 (共 條)

分享到微博請遵守國家法律
延庆县| 博客| 湘潭县| 通州市| 菏泽市| 陈巴尔虎旗| 包头市| 赤水市| 宜阳县| 鄂州市| 克拉玛依市| 西乌珠穆沁旗| 泰顺县| 桃园市| 苏尼特左旗| 四川省| 高安市| 新巴尔虎右旗| 太湖县| 离岛区| 维西| 固始县| 得荣县| 阿拉善右旗| 溧水县| 普宁市| 铜川市| 弋阳县| 海宁市| 霞浦县| 新龙县| 宜兰县| 淄博市| 孝义市| 昌图县| 喀喇| 平舆县| 手游| 宁陵县| 华容县| 察雅县|