Using Estimated Frequency responce function ,to find output vector
조회 수: 10 (최근 30일)
이전 댓글 표시
So,I got this vector of sampled input data in Matlab,which is vector of approx 1x25000 length. I have frequency responce function attained by different estimators (H1,H2,Arx). Anyway,my FRF is also a vector of 1x129 length.
Those two are different sized vectors.How should I find the output data using input data and this obtained FRF vector?
One way is to transform input vector (which is sampled data) with FFT ,and then just multiply input vector with FRF,element by element = X(i)*Y(u) .But those two vectors would be different sizes,how should I make them both same size? What is the correct approach in this case?I remember learning something about zero padding,how is it done?
Second way is transform FRF (IFFT) into time domain vector,and then convolve those two vectors.But again,those two will be different sized vectors,how should I do it?
Thanks in advance!
댓글 수: 0
답변 (2개)
Dishant Arora
2014년 3월 13일
I don't see any reason why you can't perform the second task. There's no such constraint that vectors should be of equal length for convolution.
y = conv(ifft(frf) , inputSignal)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Filter Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!