Question: Create and plot a signal x 0 ( t ) = te - | t | using the following commands: > > t = -

Create and plot a signal x0(t)= te-|t| using the following commands:
>> t =-10:0.1:10;
>> xo = t .* exp(-abs(t));
>> plot(t,xo)
Create the related signals xe(t)=|t|e-|t| and x(t)=0.5*[x0(t)+ xe(t)].
What are x0(t) and xe(t), relative to x(t)?
Plot all three signals together in one window.
Using the linspace() command, determine how you would use it to define the variable t above.
Prove that your linspace() answer works (hint: in the linspace() help, there is an equation that
tells you how the spacing is calculated).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!