代码搜索:光信号检测
找到约 10,000 项符合「光信号检测」的源代码
代码结果 10,000
www.eeworm.com/read/284207/8954253
m 例程13-4.m
% 产生信号,设置阈值
t = linspace(0,1,100);
y = 0.8*sin(2*pi*t);
subplot(1,3,1),plot(y);
title('原始信号'),grid on;
thr = 0.4;
% 进行硬阈值处理
ythard = wthresh(y,'h',thr);
subplot(1,3,2),plot(ythard );
title(
www.eeworm.com/read/282790/9060323
m 例程13-4.m
% 产生信号,设置阈值
t = linspace(0,1,100);
y = 0.8*sin(2*pi*t);
subplot(1,3,1),plot(y);
title('原始信号'),grid on;
thr = 0.4;
% 进行硬阈值处理
ythard = wthresh(y,'h',thr);
subplot(1,3,2),plot(ythard );
title(
www.eeworm.com/read/182830/9189307
vhd singt.vhd
LIBRARY IEEE; --正弦信号发生器源文件
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY SINGT IS
PORT ( CLK : IN STD_LOGIC; --信号源时钟
CLK1:IN STD_LOGIC;
DOUT : OUT STD_LOGIC_VECTOR (
www.eeworm.com/read/375257/9367204
m f7_2.m
%产生线性调频信号
N=64;
sig=fmlin(N,0,0.3);
%加噪声
sign=sigmerge(sig,noisecg(N),1);
%绘制时域波形
figure(1);
plot(real(sign),'LineWidth',2);
xlabel('时间 t');
ylabel('幅值 A');
%计算信号的Wibner-Ville分布
[tfr,t,
www.eeworm.com/read/375257/9367217
m f7_10.m
%样本点数
N=4096;
%正常时心音信号
[x,fxs,bits] = wavread('normal',N);
%肺动脉瓣狭窄时心音信号
[y,fys,bits] = wavread('pulmonarystenosis',N);
%设置参数
%时域窗函数
g=window(9,'Kaiser');
%频域窗函数
h=window(27,'Kaiser');
t=1
www.eeworm.com/read/375257/9367250
m f12_8.m
%装载原始信号并图示之
load noismima;
s=noismima(1:1000);
figure(1);
subplot(2,2,1);
plot(s);
xlabel('样本序号 n');
ylabel('幅值 A');
title('原始信号');
%采用默认阈值、用wdencmp函数进行消噪处理
[thr,sorh,keepapp,crit]=ddencmp
www.eeworm.com/read/375257/9367259
m f12_9.m
%装载源信号
load noisbump;
s=noisbump(1:1000);
figure(1);
subplot(2,1,1);
plot(s);
xlabel('样本序号 n');
ylabel('幅值 A');
title('原始信号');
%采用默认阈值,以小波包函数wpdencmp对s进行压缩处理
[thr,sorh,keepapp,crit]=ddencmp(
www.eeworm.com/read/372069/9523338
m butfilter.m
function y=butfilter(x,wp,ws)%实现带通滤波,输入为需滤波的信号x,频率带宽[wp ws],输出为带通滤波后的信号。
wp=wp/(20/2);ws=ws/(20/2);
[b,a]=butter(4,[wp ws],'bandpass');
y=filter(b,a,x);
www.eeworm.com/read/365787/9847143
m program_13_04.m
% 产生信号,设置阈值
t = linspace(0,1,100);
y = 0.8*sin(2*pi*t);
subplot(1,3,1),plot(y);
title('原始信号'),grid on;
thr = 0.4;
% 进行硬阈值处理
ythard = wthresh(y,'h',thr);
subplot(1,3,2),plot(ythard );
title(
www.eeworm.com/read/362220/10012003
m program_13_04.m
% 产生信号,设置阈值
t = linspace(0,1,100);
y = 0.8*sin(2*pi*t);
subplot(1,3,1),plot(y);
title('原始信号'),grid on;
thr = 0.4;
% 进行硬阈值处理
ythard = wthresh(y,'h',thr);
subplot(1,3,2),plot(ythard );
title(