[y,fs]=wavread('C:\Users\Mohamed\Desktop\sinesweeprec.wav')
[x,fs]=wavread('C:\Users\Mohamed\Desktop\sinesweep.wav')
a=fft(x)
b=fft(y)
h=ifft(b/a)
So I use this code in order to get the impulse response of a room but I get this error ('Error using / Matrix dimensions must agree')
can someone please help and how to solve it.