MATLAB: MODALFRF function cannot be found in R2015a.

Signal Processing Toolbox

I'm trying to get the frequency response function of my signal in MATLAB. I'm trying to use the MODALFRF function but i'm getting the error that the function is undefined.

Best Answer

This is expected behavior because the MODALFRF function is introduced in R2017a.
I suggest you to upgrade to R2017a version or later to access the MODALFRF function.
For more information on the above function:
As an workaround in R2015a to get the frequency response function you can use the FFT function:
>> FRF = fft(output)./fft(input);
Related Question