Want binary output from given fsk demodulation
이전 댓글 표시
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
Rik
2019년 12월 14일
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
2019년 12월 14일
Rik
2019년 12월 14일
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
2019년 12월 14일
Rik
2019년 12월 14일
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
2019년 12월 14일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Modulation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!