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

 Risposta accettata

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 Commento

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

Accedi per commentare.

Più risposte (0)

Categorie

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by