MATLAB: How to get the transfer function of a system according to its discrete impulse response

impulse responsetransfer function

I have the discrete impulse response of a system, how to obtain its IIR transfer function with MATLAB?

Best Answer

Start by preparing your input and output data with the System Identification Toolbox iddata (link) function, then use the tfest (link) function to identify the transfer function. There are other applicable functions as well, linked in and at the end of those documentation pages.
Related Question