how can i get the inverse Laplace for the transfer function

how can i get the inverse Laplace for the transfer function
X=F/(S(m*S^2+C*S+K))
knowing that F & C & K & X are all matrices
I will be grateful for any help

 Respuesta aceptada

Ahmed, use the symbolic approach, e.g.,
syms X S t
F = 1; m = 2; C = 3; K = 4;
X = F/(S*(m*S^2+C*S+K));
x = ilaplace(X, S, t)

1 comentario

ok i know how to get inverse laplace if (F & m & K & x) are scalar
but in my problem (F & m & K & x) are all matrices

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Preguntada:

el 29 de Jun. de 2014

Comentada:

el 29 de Jun. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by