1 简介 基于自适应双阈值实现无线麦克风信号检测 2 部分代码 %PART 74 wireless microphone function [s]=func_microphone() to=1; % signal duration ts=0.001; % sampling interval fs=1/ts; % sampling freq df = 0.8; % desired
1 简介
基于自适应双阈值实现无线麦克风信号检测
2 部分代码
%PART 74 wireless microphonefunction [s]=func_microphone()
to=1; % signal duration
ts=0.001; % sampling interval
fs=1/ts; % sampling freq
df = 0.8; % desired freq resolution
t=[0:ts:to]; % time vertor
fo=100; %modulation freq: 100KHz
fc=300; %carrier freg:300KHz
A1=2; %amplitude of modulation signal
A2=1; %amplitude of carrier signal
c=A1*cos(2*pi*fc.*t); %carrier signal
m=A2*cos(2*pi*fo.*t); %message signal
s=m.*c; %AM modulation of wireless mike signal
[M,m,df1]=fftseq(m,ts,df); %fourier transform
M=M/fs; %scaling
[S,s,df1]=fftseq(s,ts,df); %fourier transform
S=S/fs; %scaling
f=[0:df1:df1*(length(m)-1)]-fs/2; %freq vector
end
function [M,m,df]=fftseq(m,ts,df)
fs=1/ts;
if nargin==2
n1=0;
else n1=fs/df;
end
n2=length(m);
n=2^(max(nextpow2(n1),nextpow2(n2)));
M=fft(m,n);
m=[m,zeros(1,n-n2)];
df=fs/n;
end
3 仿真结果
编辑
编辑
4 参考文献
[1]陈耿铎, 曾有灵, 李喆. 自适应双阈值心电信号检测算法研究[J]. 暨南大学学报:自然科学与医学版, 2018, 39(3):7.
博主简介:擅长智能优化算法、神经网络预测、信号处理、元胞自动机、图像处理、路径规划、无人机等多种领域的Matlab仿真,相关matlab代码问题可私信交流。
部分理论引用网络文献,若有侵权联系博主删除。
编辑