Assistance solving unknowns in transfer function?

조회 수: 4 (최근 30일)
Niel
Niel 2025년 3월 22일
댓글: Star Strider 2025년 3월 23일
How do I solve A, B, C and D in the following transfer function in Matlab? Answers also included:
  댓글 수: 2
Sam Chak
Sam Chak 2025년 3월 22일

The partfrac() function can directly show you the answers for the values of A, B, C, D. But it doesn't show you the steps to compute those values.

Are you looking for the functions from the Symbolic Math Toolbox that can be used to solve the algebraic problems for calculating A, B, C, D separately?

Niel
Niel 2025년 3월 23일
Thanks, partfrac() works very well

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

채택된 답변

Star Strider
Star Strider 2025년 3월 22일
I would use the partfrac function —
syms s
H = 8/((s^2+4)*(s+1)*(s+4))
H = 
Hpf = partfrac(H)
Hpf = 
You will likely need to interrpret the coefficients to get them in the forrm you want.
.
  댓글 수: 2
Niel
Niel 2025년 3월 23일
Thanks! This works very well, a lot quicker than the conventional method
Star Strider
Star Strider 2025년 3월 23일
As always, my pleasure!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by