Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Code is provided for #1. I need #2,#3,and #4 t=-4:0.01:4 ; x1 = 1.274 .* sin(2.*pi.*t); x2 = 0.425 .* sin(6.*pi.*t) ; x3 = 0.255
Code is provided for #1. I need #2,#3,and #4
t=-4:0.01:4 ;
x1 = 1.274 .* sin(2.*pi.*t);
x2 = 0.425 .* sin(6.*pi.*t) ;
x3 = 0.255 .* sin(10.*pi.*t) ;
x4 = 0.182 .* sin(14.*pi.*t) ;
y = x1 + x2 + x3 + x4 ;
subplot(5,1,1) ; plot(t,x1) ; axis([ 0 1 -2 2 ]) ;
subplot(5,1,2) ; plot(t,x2) ; axis([ 0 1 -2 2 ]) ;
subplot(5,1,3) ; plot(t,x3) ; axis([ 0 1 -2 2 ]) ;
subplot(5,1,4) ; plot(t,x4) ; axis([ 0 1 -2 2 ]) ;
subplot(5,1,5) ; plot(t,y ) ; axis([ 0 1 -2 2 ]) ;
Step 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