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

 Accepted Answer

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 Comment

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

Sign in to comment.

More Answers (0)

Tags

Asked:

on 29 Jun 2014

Commented:

on 29 Jun 2014

Community Treasure Hunt

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

Start Hunting!