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!