Input function of convolution

3 次查看(过去 30 天)
JOB
JOB 2019-12-24
编辑: Matt J 2019-12-24
I have doubt about convolution. Is it possible to find the Input function that convolved, from the result of convolution? As an example y=conv(x,x). Is there a method to uniquely determine 'x', If only 'y' is known?
  1 个评论
Matt J
Matt J 2019-12-24
Obviously not uniquely. For example, when x is a scalar, this reduces to the equation
y=x.^2
which does not have a unique solution for x.

请先登录,再进行评论。

采纳的回答

Matt J
Matt J 2019-12-24
编辑:Matt J 2019-12-24
As an example y=conv(x,x). Is there a method to uniquely determine 'x', If only 'y' is known?
If you know that x has a real, positive Fourier spectrum X(f), then you can solve for x using frequency domain methods,

更多回答(1 个)

Matt J
Matt J 2019-12-24
编辑:Matt J 2019-12-24
If one of the convolution operands is known, you can recover the second using deconv. Example,
x = [2 7 4 9];
k = [1 0 1];
y = conv(x,k);
>> xr=deconv(y,k)
xr =
2 7 4 9

类别

Help CenterFile Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by