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

 Réponse acceptée

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 commentaire

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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by