Generating two signals and concatenating them
Show older comments
I've got this code that is supposed to concatenate 2 singals, the problem is that i dont know what time i should put for the program to look how it is supposed to look.
ts=12000;
t=0:1/12000:159/12000;
A1=0.4;
A2=0.3;
f1=100;
f2=330;
x1=A1*sin(2*pi*f1*t);
x2=A2*sin(2*pi*f2*t);
s=[x1,x2,x1,x1,x2,x2,x1,x2];
plot(s);
It is supposed to look like this

But instead it looks like this, how should i swap the code.

The exercise sounds like: Generate a useful modulated signal corresponding to a bit string 01001101 in this way following: - for bit 0: a sinusoidal component of amplitude of 0.4V, frequency of 100Hz - for bit 1: a sinusoidal component of amplitude of 0.3V, frequency of 330Hz Each bit has a duration of 20ms without pause between bits (total signal duration is 160 ms). A sampling frequency of 12kHz is used.
Accepted Answer
More Answers (0)
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

