代码搜索:信号失真

找到约 10,000 项符合「信号失真」的源代码

代码结果 10,000
www.eeworm.com/read/166938/9988442

m signal_denoising1.m

load leleccum; indx = 1:1024; x = leleccum(indx); % 产生含噪信号 init=2055615866; randn('seed',init); nx = x + 18*randn(size(x)); % 获取消噪的阀值 [thr,sorh,keepapp] = ddencmp('den','wv',nx); % 对信
www.eeworm.com/read/166938/9988478

m selfsimilarity_detection.m

load vonkoch; x = vonkoch; subplot(211); plot(x); title('原始信号'); subplot(212); % 进行一维连续小波变换 f = cwt(x,[2:2:128],'coif3','plot'); title('分解后的小波系数');
www.eeworm.com/read/163643/10151842

m shuangbianzhishu_fourier.m

syms t x x=exp(-2*abs(t)) F=fourier(x); subplot(211)%绘图的位置 ezplot(x),title('双边指数信号的波形(上图)及其傅里叶变换幅频图(下图)') subplot(212) ezplot(abs(F));
www.eeworm.com/read/162642/10288313

c keyboardscan.c

//---------------------------- //----------------------------- //键盘扫描子程序 //----------------------------- //使用说明: //使用前请先定义keyscan为单片机的 //某个端口,如#define keyscan P1 //程序中扫描信号从keyscan高4位输出, //键值返回
www.eeworm.com/read/161995/10348546

m f3_11.m

%产生信号 sig=fmconst(128,0.05,50); %显示 %实部 plot(real(sig),'LineWidth',2); hold on; %虚部 plot(imag(sig),'ro--','LineWidth',1); legend('实部','虚部'); xlabel('时间 t'); ylabel('幅值 A');
www.eeworm.com/read/425287/10365632

m f3_11.m

%产生信号 sig=fmconst(128,0.05,50); %显示 %实部 plot(real(sig),'LineWidth',2); hold on; %虚部 plot(imag(sig),'ro--','LineWidth',1); legend('实部','虚部'); xlabel('时间 t'); ylabel('幅值 A');
www.eeworm.com/read/424844/10407371

m dm07101.m

%dm07101 %绘制连续信号时域波形 p=0.001; t=-pi:p:pi; f=1+cos(t); plot(t,f) title('f(t)=1+cos(t)') xlabel('t') axis([-pi,pi,-0.2,2.4])
www.eeworm.com/read/353706/10428967

vhd counter32b.vhd

LIBRARY IEEE; --32位计数器 USE IEEE.STD_LOGIC_1164.ALL; USE IEEE.STD_LOGIC_UNSIGNED.ALL; ENTITY COUNTER32B IS PORT (FIN : IN STD_LOGIC; --时钟信号 CLR : IN STD_LOGIC;
www.eeworm.com/read/160248/10549879

m f3_11.m

%产生信号 sig=fmconst(128,0.05,50); %显示 %实部 plot(real(sig),'LineWidth',2); hold on; %虚部 plot(imag(sig),'ro--','LineWidth',1); legend('实部','虚部'); xlabel('时间 t'); ylabel('幅值 A');
www.eeworm.com/read/351617/10635298

c main.c

#include #include #include "44blib.h" #include "adc.h" /********************************************/ // ARMSYS实验十二:A/D转换器应用 // 描述:通过A/D转换器读入模拟信号伏值 /******************