Question
MatLaba R Software is being used to enter this code. clc clear A1=3 A2=5 f1=150 f2=150 sphase=0 bphase=0 t=0:0.0001:0.01 s=A1*sin((2*pi*f1*t)+sphase) b=A2*cos((2*pi*f2*t)+bphase) yyaxis left %this command
MatLaba R Software is being used to enter this code.
clc clear A1=3 A2=5 f1=150 f2=150 sphase=0 bphase=0 t=0:0.0001:0.01 s=A1*sin((2*pi*f1*t)+sphase) b=A2*cos((2*pi*f2*t)+bphase) yyaxis left %this command places the y scale on the left side plot(t,s) ylim([-8 8]) ylabel('s=A1*sin((2*pi*f1*t)+sphase)') yyaxis right %this command places the y scale on the right side plot(t, b) ylim([-8 8]) ylabel('b=A2*cos((2*pi*f2*t)+bphase)') xlabel('Time (seconds)') title('Sine and Cosine Waveforms')
Step 1.9 Using the code above modify the sine sphase, by +90 degrees or +pi/2 radians, and keep the cosine wave, bphase, at 0 degrees phase angle.
Question 1.9 Select the best answer regarding your observation from step 1.9. a. both s(t) and b(t) appear as identical sine waves b. both s(t) and b(t) appear as identical cosine waves c. both s(t) and b(t) appear as cosine waves; however, their amplitudes differ d. s(t) appears as a cosine wave while b(t) appears as a sine wave
Step 1.10 Now try plotting the following carrier waves with s(t) appearing on the left and b(t) appearing on the right.
s(t) = 5sin(2250t - ) b(t) = 5cos(500t + 0) Question 1.10 What are the differences between the two plots a(t) and b(t) from step 1.10? a. s(t) and b(t) have different frequencies b. s(t) and b(t) differ in phase angle c. s(t) and b(t) differ in amplitude d. both a and b
Step 1.11 Set the phase angles for s(t) to pi/2 radians, and b(t) to 0. Set the frequency for s(t) and b(t) equal to 300 Hz.
Question 1.11 Select the correct observation for s(t) and b(t) a. plots are same in amplitude b. plots are same in frequency c. both plots appear as cosine waves. This is because the sine waves lag cosine waves by 90 degrees. By advancing the sine wave s(t) by 90 degrees, it appears identical to b(t). d. all are correct
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