transfer function in time domain

后端 未结 1 836
挽巷
挽巷 2020-12-07 03:49

I have two signals in time domain (X and Y). I am trying to calculate the transfer function between them. I used the function tfestimate, which returns a transfer function a

相关标签:
1条回答
  • 2020-12-07 04:17

    This a very common mistake. Many people seem to believe ' means transpose, but actually it means conjugate transpose. To simply transpose you should use .'

    So: change

    t = ifft([txy' tyx']);
    

    into

    t = ifft([txy.' tyx.']);
    
    0 讨论(0)
提交回复
热议问题