Convolution of every row in matrix.
이전 댓글 표시
I need to find a way to convolute rows of a matrix together into a single vector. For example: If I have a matrix A = [1,2;3,4;5,6] need a function that will produce a vector B = conv(conv(A(1,:) , A(2,:)), A(3,:))
Is there any function that could do that? If no, could someone help me write a loop to do it for me?
Thanks
답변 (1개)
Andrei Bobrov
2016년 11월 30일
편집: Andrei Bobrov
2016년 11월 30일
A = reshape(1:6,2,[])';
[m,n] = size(A);
B = zeros(1,m*(n-1)+1);
B(1:n) = A(1,:);
for ii = 1:size(A,1)-1
B(1:n-ii+ii*n) = conv(B(1:ii*n-ii+1),A(ii+1,:));
end
댓글 수: 6
Calle Swedhag
2016년 11월 30일
편집: Calle Swedhag
2016년 11월 30일
Image Analyst
2016년 11월 30일
Seems like a very strange thing to do. What are you after? What's the real world use of this? Are you trying to demonstrate the Central Limit Theorem or something???
And how many rows get convolved? Just 3 at a time, like your initial example showed, until you hit the bottom? Or all of them from the first row down, like k nested convolutions?
Calle Swedhag
2016년 11월 30일
Calle Swedhag
2016년 11월 30일
Image Analyst
2016년 11월 30일
Convolution is not multiplying poynomials together. What your nested convolution will produce is a gigantic Gaussian. That's what the central limit theorem guarantees. Any function(s), almost no matter what shape, if convolved more than about 5 or 6 times will look very close to a Gaussian.
Andrei Bobrov
2016년 11월 30일
I corrected my answer.
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!