matlab中卷积convolution与filter用法
转自:https://blog.csdn.net/dkcgx/article/details/46652021
转自:https://blog.csdn.net/Reborn_Lee/article/details/83279843
conv(向量卷积运算)
所谓两个向量卷积,说白了就是多项式乘法。 比如:p=[1 2 3],q=[1 1]是两个向量,p和q的卷积如下: 把p的元素作为一个多项式的系数,多项式按升幂(或降幂)排列,比如就按升幂吧,写出对应的多项式:1+2x+3x^2;同样的,把q的元素也作为多项式的系数按升幂排列,写出对应的多项式:1+x。
卷积就是“两个多项式相乘取系数”。 (1+2x+3x^2)×(1+x)=1+3x+5x^2+3x^3 所以p和q卷积的结果就是[1 3 5 3]。
记住,当确定是用升幂或是降幂排列后,下面也都要按这个方式排列,否则结果是不对的。 你也可以用matlab试试 p=[1 2 3] q=[1 1] conv(p,q) 看看和计算的结果是否相同。
conv2(二维矩阵卷积运算)
a=[1 1 1;1 1 1;1 1 1]; b=[1 1 1;1 1 1;1 1 1]; >> conv2(a,b)
ans =
1 2 3 2 1
2 4 6 4 2
3 6 9 6 3
2 4 6 4 2
1 2 3 2 1
>> conv2(a,b,'valid')
ans =
9
>> conv2(a,b,'same')
ans =
4 6 4
6 9 6
4 6 4
>> conv2(a,b,'full')
ans =
1 2 3 2 1
2 4 6 4 2
3 6 9 6 3
2 4 6 4 2
1 2 3 2 1
convn(n维矩阵卷积运算)
>> a=ones(5,5,5)
a(:,:,1) =
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
a(:,:,2) =
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
a(:,:,3) =
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
a(:,:,4) =
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
a(:,:,5) =
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
>> b=ones(5,5,5);
>> convn(a,b,'valid')
ans =
125
>> convn(a,b,'same')
ans(:,:,1) =
27 36 45 36 27
36 48 60 48 36
45 60 75 60 45
36 48 60 48 36
27 36 45 36 27
ans(:,:,2) =
36 48 60 48 36 48 64 80 64 48 60 80 100 80 60 48 64 80 64 48 36 48 60 48 36
ans(:,:,3) =
45 60 75 60 45 60 80 100 80 60 75 100 125 100 75 60 80 100 80 60 45 60 75 60 45
ans(:,:,4) =
36 48 60 48 36 48 64 80 64 48 60 80 100 80 60 48 64 80 64 48 36 48 60 48 36
ans(:,:,5) =
27 36 45 36 27 36 48 60 48 36 45 60 75 60 45 36 48 60 48 36 27 36 45 36 27
>> convn(a,b)
ans(:,:,1) =
1 2 3 4 5 4 3 2 1
2 4 6 8 10 8 6 4 2
3 6 9 12 15 12 9 6 3
4 8 12 16 20 16 12 8 4
5 10 15 20 25 20 15 10 5
4 8 12 16 20 16 12 8 4
3 6 9 12 15 12 9 6 3
2 4 6 8 10 8 6 4 2
1 2 3 4 5 4 3 2 1
ans(:,:,2) =
2 4 6 8 10 8 6 4 2 4 8 12 16 20 16 12 8 4 6 12 18 24 30 24 18 12 6 8 16 24 32 40 32 24 16 8 10 20 30 40 50 40 30 20 10 8 16 24 32 40 32 24 16 8 6 12 18 24 30 24 18 12 6 4 8 12 16 20 16 12 8 4 2 4 6 8 10 8 6 4 2
ans(:,:,3) =
3 6 9 12 15 12 9 6 3 6 12 18 24 30 24 18 12 6 9 18 27 36 45 36 27 18 9 12 24 36 48 60 48 36 24 12 15 30 45 60 75 60 45 30 15 12 24 36 48 60 48 36 24 12 9 18 27 36 45 36 27 18 9 6 12 18 24 30 24 18 12 6 3 6 9 12 15 12 9 6 3
ans(:,:,4) =
4 8 12 16 20 16 12 8 4 8 16 24 32 40 32 24 16 8 12 24 36 48 60 48 36 24 12 16 32 48 64 80 64 48 32 16 20 40 60 80 100 80 60 40 20 16 32 48 64 80 64 48 32 16 12 24 36 48 60 48 36 24 12 8 16 24 32 40 32 24 16 8 4 8 12 16 20 16 12 8 4
ans(:,:,5) =
5 10 15 20 25 20 15 10 5 10 20 30 40 50 40 30 20 10 15 30 45 60 75 60 45 30 15 20 40 60 80 100 80 60 40 20 25 50 75 100 125 100 75 50 25 20 40 60 80 100 80 60 40 20 15 30 45 60 75 60 45 30 15 10 20 30 40 50 40 30 20 10 5 10 15 20 25 20 15 10 5
ans(:,:,6) =
4 8 12 16 20 16 12 8 4 8 16 24 32 40 32 24 16 8 12 24 36 48 60 48 36 24 12 16 32 48 64 80 64 48 32 16 20 40 60 80 100 80 60 40 20 16 32 48 64 80 64 48 32 16 12 24 36 48 60 48 36 24 12 8 16 24 32 40 32 24 16 8 4 8 12 16 20 16 12 8 4
ans(:,:,7) =
3 6 9 12 15 12 9 6 3 6 12 18 24 30 24 18 12 6 9 18 27 36 45 36 27 18 9 12 24 36 48 60 48 36 24 12 15 30 45 60 75 60 45 30 15 12 24 36 48 60 48 36 24 12 9 18 27 36 45 36 27 18 9 6 12 18 24 30 24 18 12 6 3 6 9 12 15 12 9 6 3
ans(:,:,8) =
2 4 6 8 10 8 6 4 2 4 8 12 16 20 16 12 8 4 6 12 18 24 30 24 18 12 6 8 16 24 32 40 32 24 16 8 10 20 30 40 50 40 30 20 10 8 16 24 32 40 32 24 16 8 6 12 18 24 30 24 18 12 6 4 8 12 16 20 16 12 8 4 2 4 6 8 10 8 6 4 2
ans(:,:,9) =
1 2 3 4 5 4 3 2 1 2 4 6 8 10 8 6 4 2 3 6 9 12 15 12 9 6 3 4 8 12 16 20 16 12 8 4 5 10 15 20 25 20 15 10 5 4 8 12 16 20 16 12 8 4 3 6 9 12 15 12 9 6 3 2 4 6 8 10 8 6 4 2 1 2 3 4 5 4 3 2 1
conv
Convolution and polynomial multiplication
Syntax
w = conv(u,v)
w = conv(u,v,shape)
Description
w = conv(u,v)返回向量u和v的卷积。如果u和v是多项式系数的向量,则对它们进行卷积相当于将两个多项式相乘。
w = conv(
returns a subsection of the convolution, as specified by u,v
,shape
)shape
. For example, conv(u,v,'same')
returns only the central part of the convolution, the same size as u
, and conv(u,v,'valid')
returns only the part of the convolution computed without the zero-padded edges.
w = conv(u,v,shape)返回卷积的子部分,由形状指定。 例如,conv(u,v,'same')仅返回卷积的中心部分,与u的大小相同,而conv(u,v,'valid')仅返回计算后的卷积部分而没有零填充边。
Polynomial Multiplication via Convolution
Create vectors u
and v
containing the coefficients of the polynomials x^2 + 1 and 2x + 7.
u = [1 0 1];
v = [2 7];
Use convolution to multiply the polynomials.
w = conv(u,v)
w = 1×4 2 7 2 7
w
contains the polynomial coefficients for 2x^3 + 7x^2 + 2x + 7.
Vector Convolution
Create two vectors and convolve them.
u = [1 1 1];
v = [1 1 0 0 0 1 1];
w = conv(u,v)
w = 1×9 1 2 2 1 0 1 2 2 1
The length of w
is length(u)+length(v)-1
, which in this example is 9
.
Central Part of Convolution
Create two vectors. Find the central part of the convolution of u
and v
that is the same size as u
.
u = [-1 2 3 -2 0 1 2];
v = [2 4 -1 1];
w = conv(u,v,'same')
w = 1×7 15 5 -9 7 6 7 -1
w
has a length of 7
. The full convolution would be of length length(u)+length(v)-1
, which in this example would be 10.
matlab中卷积convolution与filter用法的更多相关文章
- matlab中norm与svd函数用法
格式:n=norm(A,p) 功能:norm函数可计算几种不同类型的矩阵范数,根据p的不同可得到不同的范数 以下是Matlab中help norm 的解释: NORM Matrix or vector ...
- MATLAB中的max函数的用法及含义
当A是一个列向量时候,返回一个最大值,在此不在赘述. 当Amxn是一个矩阵的时候,有以下几种情况: ① C = max(max(A)),返回矩阵最大值 ② D = max(A,[],1),返回 ...
- matlab中卷积编码参数的理解
poly2trellis(7, [171 133])代表什么意思呢?首先是7,他是1*k的vector,此处k为1,[171 133]是k*n的vector,此处n就是2,那么这个编码就是1/2码率的 ...
- matlab中disp函数的简单用法
输出数组类型的数据,也可以把string类型的数据看做数组输出 输出数字 >> num = ; >> disp(num) 输出字符串 >> disp('this i ...
- matlab中的卷积——filter,conv之间的区别
%Matlab提供了计算线性卷积和两个多项式相乘的函数conv,语法格式w=conv(u,v),其中u和v分别是有限长度序列向量,w是u和v的卷积结果序列向量. %如果向量u和v的长度分别为N和M,则 ...
- 图像卷积、相关以及在MATLAB中的操作
图像卷积.相关以及在MATLAB中的操作 2016年7月11日 20:34:35, By ChrisZZ 区分卷积和相关 图像处理中常常需要用一个滤波器做空间滤波操作.空间滤波操作有时候也被叫做卷积滤 ...
- matlab中fspecial Create predefined 2-D filter以及中值滤波均值滤波以及高斯滤波
来源: 1.https://ww2.mathworks.cn/help/images/ref/fspecial.html?searchHighlight=fspecial&s_tid=doc_ ...
- Matlab中imfilter()函数的用法
Matlab中imfilter()函数的用法 功能:对任意类型数组或多维图像进行滤波.用法:B = imfilter(A,H) B = imfilter(A,H,option1,option2,... ...
- MATLAB中conv2的详细用法 (以及【matlab知识补充】conv2、filter2、imfilter函数原理)
转载: 1.https://blog.csdn.net/jinv5/article/details/52874880 2.https://blog.csdn.net/majinlei121/artic ...
随机推荐
- oracle的system登不了
(密码对的,密码错直接就是被拒了) 这个一直弹出改密码 但是改了点[确定],又说 oracle改system密码 [oracle@localhost ~]$ sqlplus / as sysdba S ...
- Unity坑之 传递默认枚举类型参数
今天在编写一个通用模块的时候,遇到一个奇怪的问题,vs编译时没有任何问题,但是轮到unity编译时,却报错: error CS0103: The name `PrintInt' does not ex ...
- [BUUOJ记录] [BJDCTF 2nd]fake google
本题考查python jinjia2的ssti,其实tplmap直接梭哈都可以 随便输入一个值,查看源代码就能看到一个Hint: 用下面的流程图测试一下,看看是什么模板引擎: 用Payload测试之后 ...
- leetcode刷题-67二进制求和
题目 给你两个二进制字符串,返回它们的和(用二进制表示). 输入为 非空 字符串且只包含数字 1 和 0. 示例 1: 输入: a = "11", b = "1" ...
- python 手把手教你基于搜索引擎实现文章查重
前言 文章抄袭在互联网中普遍存在,很多博主都收受其烦.近几年随着互联网的发展,抄袭等不道德行为在互联网上愈演愈烈,甚至复制.黏贴后发布标原创屡见不鲜,部分抄袭后的文章甚至标记了一些联系方式从而使读者获 ...
- loadrunner做http接口的性能测试
不用录制脚本的方法 步骤: 1.先打开Virtual User Generator——选择Web/HTTP协议,进入到主页面,这里不按照传统录脚本的方式输入url,所以直接叉掉录制脚本选项,进入下面的 ...
- 内存管理初始化源码3:bootmem
start_kernel ——> setup_arch ——> arch_mem_init ——> bootmem_init ——> init_bootmem_node: 此时 ...
- git远程仓库创建及代码提交
git仓库创建:1. mkdir project-repertory2. cd project-repertory3. git init --bare 此时,git仓库已成功创建. 本地要提交的代码在 ...
- spring cloud微服务快速教程之(十二) 分布式ID解决方案(mybatis-plus篇)
0-前言 分布式系统中,分布式ID是个必须解决的问题点: 雪花算法是个好方式,不过不能直接使用,因为如果直接使用的话,需要配置每个实例workerId和datacenterId,在微服务中,实例一般动 ...
- Spring Boot 所有相关的配置信息
加载顺序 如上图所示,图片是从官网上截取的,这些配置信息都会加载,只不过顺序在前的会覆盖掉后面的 上图的所有配置信息都会以(key,value)的形式加载到Spring中的Environment中,也 ...