Laplace inversion for fractional-order transfer functions
Show older comments
I am using the FOMCON toolbox, which enables me to introduce transfer functions with a fractional order. However, when I want to use the laplace inversion function, it works for simple cases but not for a bit complicated equations. Can anyone help me with this?
Example 1: works
syms s
TF = 1/s^0.5;
ilaplace(TF)
ans =
1/(t^(1/2)*pi^(1/2))
Example 2: does not work (only works when a = integer)
syms s
a = 0.5
TF = 1/(5 + (3*(s^a + (1/2^a)))/(s^a + (1/6^a)));
ilaplace(TF)
answ =
ilaplace(1/(((3*2^(1/2))/2 + 3*s^(1/2))/(6^(1/2)/6 + s^(1/2)) + 5), s, t)
Accepted Answer
More Answers (0)
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!