Assistance solving unknowns in transfer function?

3 visualizaciones (últimos 30 días)
Niel
Niel el 22 de Mzo. de 2025
Comentada: Star Strider el 23 de Mzo. de 2025
How do I solve A, B, C and D in the following transfer function in Matlab? Answers also included:
  2 comentarios
Sam Chak
Sam Chak el 22 de Mzo. de 2025

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 el 23 de Mzo. de 2025
Thanks, partfrac() works very well

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 22 de Mzo. de 2025
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 comentarios
Niel
Niel el 23 de Mzo. de 2025
Thanks! This works very well, a lot quicker than the conventional method
Star Strider
Star Strider el 23 de Mzo. de 2025
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by