How Do I Optimize Transfer Functions on MATLAB??

조회 수: 7 (최근 30일)
John Galeck
John Galeck 2021년 1월 8일
댓글: John Galeck 2021년 1월 9일
I was given a task by my teacher where I was given several laplace transforms to "optimize" by using the keywords "parallel", "series", "feedback" in order to connect these blocks together, map it and optimise them. Thing is I am not sure how I can "optimise" a transfer function on MATLAB cos afterall i'm just putting in random transfer functions, how do I make MATLAB just do the job for me?
Am I supposed to model this after something? Or does MATLAB find the best possible route for each transfer function to get an answer?
Please let me know If I am missing any information.
Thank you in advance
  댓글 수: 2
Piotr Balik
Piotr Balik 2021년 1월 8일
Probably they meant minreal function for pole-zero cancellation (simplification).
G=zpk([],1,1)
K=zpk(1,1.5,1)
Gz=feedback(K*G,1)
zpk(Gz)
zpk(minreal(Gz))
John Galeck
John Galeck 2021년 1월 9일
So to be sure we're on the right page: I have 5 transfer functions(G1, G2, G3, H1, H2) to use and essentially "optimize" by using MATLAB's "Minreal"? You sure I don't have to use "series" or "parallel"?

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by