Curve Fitting a Transfer Function
Ältere Kommentare anzeigen
I have a transfer function in the frequency domain and I am looking to curve fit it into a numerator and a denominator for a system. Is there a specific function that I can use to do so if there are both poles and zeros in the transfer function? I have the standard student version toolboxes as well as the system ID toolboxes.
Antworten (1)
Sebastian Castro
am 14 Jul. 2015
In System Identification Toolbox, there is a "tfest" function. Notice that one way to call it is by specifying the data, as well as the number of poles (np) and zeros (nz):
>> sys = tfest(data,np,nz)
- Sebastian
1 Kommentar
Michael Harris
am 14 Jul. 2015
Kategorien
Mehr zu Transfer Function Models finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!