Convolution of two matrices
1 view (last 30 days)
Show older comments
Let A,B,C,D, are vectors of size 3*1.
S=[A*B,C*D]. Here * is linear convolution. How to rearrange A,C together and B,D together to maintain the S result as same. Need help on this.
0 Comments
Answers (1)
William Rose
on 3 Feb 2022
A=rand(3,1); B=rand(3,1); C=rand(3,1); D=rand(3,1);
S1=[conv(A,B),conv(C,D)]; disp(S1)
S2=[conv(B,A),conv(D,C)]; disp(S2)
Do you consider this to be a rearrangment of A,C and B,D? It maintains S.
See Also
Categories
Find more on Computational Geometry in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!