Assistance solving unknowns in transfer function?

4 次查看(过去 30 天)
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?

请先登录,再进行评论。

采纳的回答

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.
.

更多回答(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