TF from response graph
Show older comments
can any one know how to get transfer function from a response graph
Answers (1)
Abhishek Gupte
on 14 Dec 2011
0 votes
I assume that you have the frequency response data for a system and want to get the Transfer Function coefficients for the system. try using the INVFREQS function.
2 Comments
Krishna Kanth
on 14 Dec 2011
Walter Roberson
on 15 Dec 2011
What form is the graph in? If it is in handle graphics form,
plothand = findobj('type','line');
wd = get(plothand,'XData')
hd = get(plothand,'YData')
However, I see that invfreqs expects to have complex responses input in to it, but it is not possible for the XData or YData to come out complex. You would have to figure out how to deduce the complex response from the graph.
Categories
Find more on Dynamic System Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!