Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

please give matlab code Use MATLAB and the Symbolic Math Toolbox to Generate sym

ID: 2997263 • Letter: P

Question

please give matlab code

Use MATLAB and the Symbolic Math Toolbox to Generate symbolically the time function f(t) shown in Prelab 1. Generate symbolically F(s) shown in Prelab 2. Obtain your result symbolically in both factored and polynomial forms. Generate an LTI transfer function for your symbolic representation of F(s)in Prelab 2 in both polynomial form and factored form. Start with the F(s) you generated symbolically. Solve for the Laplace transforms of the loop currents in Prelab . Minimum Required Software MATLAB. the Symbolic math Toolbox, and the Control System Toolbox Prelab using hand calculation, find the Laplace transform of: f(t) = 0.0075 - 0.000034e-2.5 cos(22t) + 0.087e-2.5t Using a hand calculation, find the inverse Laplace transform of F(s) = 2(s + 3)(s + 5) (s + 7) / s(s + 8) (s2 + 10s + 100)

Explanation / Answer

clear all
close all
clc
syms 't'
ft=.0075*t-.00034*exp(-2.5*t)*cos(22*t)+.087*exp(-2.5*t)*sin(22*t)-.0072*exp(-8*t);
FS=laplace(ft);