MATLAB: How can i get the inverse Laplace for the transfer function

matrix

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

Best 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)