Question
MATLAB
c. Determine the Partial Fraction Expansion and the Laplace Inverse) of the following ace Inverse (fo)) of the following func
0 0
Add a comment Improve this question Transcribed image text
Answer #1

syms s
y = (8*(s+1)*(s+3))/((s+2)*(s+4)*(s+6)^2);

%Partial fraction
pf = partfrac(y);
disp('Partial Fraction: ')
disp(pf)

%Inverse laplace transform
syms yl(t)
dy(t) = ilaplace(y)
disp('Inverse laplace transform:')
disp(dy)

%first derivative
syms yl1(t)
d2y(t) = diff(dy,t);

%plot

t = 0:0.01:1;
a = dy(t);
b = d2y(t);

hold on
plot(t,a,'b',t,b,'r')
hold off

%output:-
1) command window

Command Window New to MATLAB? See resources for Getting Started. Partial Fraction: Inverse laplace transform: (13 exp (-6t))/

2)PLOT-1 -2 0.1 0.20.3 0.40.5 0.6 0.7 0.80.9

Add a comment
Know the answer?
Add Answer to:
MATLAB c. Determine the Partial Fraction Expansion and the Laplace Inverse) of the following ace Inverse...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT