필터 지우기
필터 지우기

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