TF from response graph
1 次查看(过去 30 天)
显示 更早的评论
can any one know how to get transfer function from a response graph
0 个评论
回答(1 个)
Abhishek Gupte
2011-12-14
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 个评论
Walter Roberson
2011-12-15
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 QSP, PKPD, and Systems Biology 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!