Question: Write a MATLAB program that evaluates the signal g(t) = f(t), 1>0 where f(t) = e' sin(2). This task is to demonstrate the effects
Write a MATLAB program that evaluates the signal g(t) = f(t), 1>0 where f(t) = e' sin(2). This task is to demonstrate the effects of time scaling, inversion, and shifting. You can use the following steps to solve this problem. 1. From the Home tab, create a New Script (.m file) and save it as labl.m. 2. Write a MATLAB anonymous function to define g(1). Hint: Use the unit step function u(t) which can be implemented as u = @(t) 1.0.* (t>=0). 3. Write a code to create a figure with 3 subplots. 4. Plot g(t), g(2t+1), and g(-1+1) on each subplot over the time period -2 to 2 seconds. 5. Run the script to display the plots.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
