Hello I'm stuck with a little problem here in MatLab. What I need to do i
input a string of text, convert it to binary, and then use FSK to mod i
together, then demod and and filter it out and convert it back to tex
again. The first part is easy, the input of text and converting, what i'
having trouble with is using FSK to put the binary input and the carrie
waves together to get my modulated signal. Here's the code I have so far.
phrase = input('Enter desired word or phrase: ','s')
binphr=dec2bin(abs(phrase))
fs=8000
tn = 0:1/fs:0.005;
phi2 = 360;
xx = [cos(2*pi*1650*tn), cos(2*pi*1850*tn + phi2)];
So I have my binphr and xx, so how do I combine the two.
