代码搜索:信号失真
找到约 10,000 项符合「信号失真」的源代码
代码结果 10,000
www.eeworm.com/read/378248/9239482
asm touch15x20d(int).asm
;=============================================================
;OCMJ15X20D触摸屏中断程序
;当触摸事件发生时模块产生中断经INT脚输出信号触发MCU的外部中断0
;=============================================================
RS EQU P3.0
www.eeworm.com/read/378248/9239485
asm 8x15d测架(touch).asm
;=============================================================
;OCMJ8X15D触摸屏中断程序
;当触摸事件发生时模块产生中断经INT脚输出信号触发MCU的外部中断0
;=============================================================
RS EQU P3.0
www.eeworm.com/read/181456/9254733
m channel.m
function varargout = channel(sig,varargin)
%CHANNEL MIMO channel model.
% Y = CHANNEL(X) corrupts input signal X by desired type of channel
% fading. 通过衰落信道使输入信号X恶化的输出
%
% [Y,ALPHA] = CHANNEL(X
www.eeworm.com/read/181456/9254770
asv channel.asv
function varargout = channel(sig,varargin)
%CHANNEL MIMO channel model.
% Y = CHANNEL(X) corrupts input signal X by desired type of channel
% fading. 通过衰落信道使输入信号X恶化的输出
%
% [Y,ALPHA] = CHANNEL(X
www.eeworm.com/read/180756/9295914
vhd clock_my222.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY CLOCK_MY IS
PORT( CLK : IN STD_LOGIC; --CPLD系统时钟
SENSOR_A : IN STD_LOGIC; --码盘A信号
www.eeworm.com/read/376900/9301616
asv suiji.asv
function [T,Ts,y1,y2]=suiji(N,fs)
%以固定的信息速率产生随即点
%固定信息速率设定为bp
%N=521 速率为512Hz
%==========================================================================
%产生随即信号
%=======================
www.eeworm.com/read/180494/9305174
m example6_6.m
%目标函数
function F = tracklsq(input)
a=input(1);
b=input(2);
opt = simset('solver','ode5','SrcWorkspace','Current');
[tout,xout,yout] = sim('trackoptim',[0 5],opt);
%计算误差信号
F = yout-1;
%调
www.eeworm.com/read/170114/9818814
c 11-7.c
#include
#include
#include
#include
#include
#include
static sigset_t signal_mask; /* 阻塞信号 */
int main (int
www.eeworm.com/read/363635/9941453
m gamp.m
clc
clear
load signal_library;
%此程序用来分解样本信号
iterative_number = 10;
swatch_parameter = zeros(10,5*iterative_number);
for Num_swatch = 0:9
eval( ['bat = signal_swatch' in
www.eeworm.com/read/163643/10151783
m u.m
t=-1:0.01:3
f=heaviside(t)
subplot(211)
plot(t,f)
axis([-1,3,-0.2,1.2])
title('单位阶跃信号')
F=1/2+1/2*sign(t)
subpot(212)
plot(t,F)