Matrix dimensions must agree when doing an elementwise operation
1 次查看(过去 30 天)
显示 更早的评论
Hello, I would like to compute the product of two Fourier transform with the following code :
Fe=8000;
Te=1/Fe;
N=Fe;
t=0:Te:(N-1)*Te;
T=0.02;
x=1+square(2*pi*t/T);
K=10;
h=ones(1,K)/K;
y=conv(x,h);
Npts=Fe*T;
X=fft(x);
H=fft(h);
Y=fft(y);
prod=X.*H;
conv=fft(conv(x,h,'same'));
The objective here is to show that fft(h)*fft(x)= fft(conv(x,h)).
The problem is that even if I use the elementwise operator I get this error :
This is surely because of the size of the vector h, could anyone explain me what's wrong ?
1 个评论
回答(1 个)
Esha Chakraborty
2022-4-14
Hi Adrien,
I understand that you are encountering the error - 'Matrix dimensions must agree', while performing element-wise matrix multiplcation of X and H variables in your code.
Please note that for matrix multiplcation, the sizes of X and H must be the same or be compatible. You can find more details on array size compatibility in the documentation here.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!