Answered step by step
Verified Expert Solution
Question
1 Approved Answer
%%Note: here is the MatLab code for the function c(t) clc clear all; close all; t=[-3:0.01:3]; a=tripuls (t+1,4); a=2*a; c=(3/2)*a; plot(t,c,'r'); grid minor; xlabel(time (s));
%%Note: here is the MatLab code for the function c(t)
clc
clear all;
close all;
t=[-3:0.01:3];
a=tripuls (t+1,4);
a=2*a;
c=(3/2)*a;
plot(t,c,'r');
grid minor;
xlabel("time (s)");
ylabel("signals");
title("signals vs time");
axis([-3, 3, 0, 4]);
u(t) is a step-function
Plot the following signal e(t) 2 e(t) = * c(t) * (a(t + 2)-u(t)) + cos(2 * pi * t) * (a(t)-u(t-1) 3Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started