please check this code .. im getting error that frequency should be less than Fs/2....
4 views (last 30 days)
Show older comments
clear; clc;
M=2^50;
freq_sep=100;
nsamp=6;
y=wavread('voice','native');
x=fi(y);
z=bin(x);
m=str2num(z); %#ok<ST2NM>
fsk_mod=fskmod(m,M,freq_sep,nsamp);
noise=awgn(fsk_mod,0);
fsk_demod=fskdemod(noise,M,freq_sep,nsamp);
[num,rate]=biterr(fsk_demod);
output=wavwrite('fsk_demod');
sound(output)
0 Comments
Accepted Answer
Walter Roberson
on 10 May 2012
wavwrite() requires a minimum of two parameters, and never returns a value.
More Answers (0)
See Also
Categories
Find more on FSK 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!