Want binary output from given fsk demodulation
Show older comments
i am working with a calculation that is sent wirelessly by sound (fsk modulated) now i want to recover that first recording that signal and then demodulation ,demodulation into digital waveform (i have done all mentioned stuff now ...) i want to convert this digital waveforn into binarydata stored in an array.(audio siganl is attached)
clc;
clear all;
close all;
fc=500;
fs=8000;
fDev=50;
t=0.1;0.001;0.5;
% b=audiorecorder;
% recordblocking(b,3);
% a=getaudiodata(b);
% audiowrite('lala.wav',a,44100); %there is some issue in recording
y=audioread('lala.wav');
sound(y);% listen your audio input
z = fmdemod(y,fc,fs,fDev);
figure
plot(z);axis('tight');
wn=fc/fs;
s=fir1(50,wn,'low');
x=conv(s,z);
figure
plot(x);axis('tight');
%all starts here plz help!!
% mn=[];
% if(x>=20)
% j=1;
% else
% j=0;
% end
%
% mn=[mn j];
% disp(' Binary information at Reciver :'); %want this from all given data.
% disp(mn);
% %>>>>>>>>>>>>>>>>>>>>>>>>>> end of program >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>%
6 Comments
Rik
on 14 Dec 2019
I don't have the toolbox that contains fmdemod, so I can't run your code. It is also unclear to me what you are trying to do. Do you want to write something as a wav file?
It also looks like you're trying to treat x as a scalar in your commented code, instead of just doing this:
mn= double(x>=20);
osama saeed
on 14 Dec 2019
Rik
on 14 Dec 2019
It looks like you have a lot of filtering to do. You data is a line plot that is oscilating very fast, so you will have to filter this (e.g. with movmax and movmin) to get an estimate of the enveloppe. When you have that data, you can use a line like I suggested to turn every element larger than 20 into a 1, and make the rest 0.
osama saeed
on 14 Dec 2019
Rik
on 14 Dec 2019
If you put the data that you have plotted in a mat file I might be able to convert that to the binary signal you describe.
Star Strider
on 14 Dec 2019
Answers (0)
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!