代码搜索:Array Signal Processing

找到约 10,000 项符合「Array Signal Processing」的源代码

代码结果 10,000
www.eeworm.com/read/127382/14356839

c signal.c

/* Reliable version of signal(), using POSIX sigaction(). */ #include #include "ourhdr.h" Sigfunc * signal(int signo, Sigfunc *func) { struct sigaction act, oact; act.sa_han
www.eeworm.com/read/228948/14357024

h signal.h

#ifndef _SIGNAL_H #define _SIGNAL_H #include // 类型头文件。定义了基本的系统数据类型。 typedef int sig_atomic_t; // 定义信号原子操作类型。 typedef unsigned int sigset_t; /* 32 bits */// 定义信号集类型。 #define _NSIG 32
www.eeworm.com/read/228948/14357070

c signal.c

/* * linux/kernel/signal.c * * (C) 1991 Linus Torvalds */ #include // 调度程序头文件,定义了任务结构task_struct、初始任务0 的数据, // 还有一些有关描述符参数设置和获取的嵌入式汇编函数宏语句。 #include // 内核头文件。含有一些内核常用
www.eeworm.com/read/127372/14357700

h signal.h

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ include/signal.h ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
www.eeworm.com/read/127372/14357748

c signal.c

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/mm/signal.c ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1
www.eeworm.com/read/228696/14366522

uvl signal.uvl

[Signal 1] DispName=AIN0 PlotType=0 Color=255 MinDec=1 MinVal=0. MaxDec=1 MaxVal=5. Mask=-1 Offset=0 [Signal 2] DispName=AIN1 PlotType=0 Color=32768 MinDec=1 MinVal=0. MaxDec=1 MaxVal
www.eeworm.com/read/127160/14374971

h signal.h

www.eeworm.com/read/227822/14410514

c signal.c

/* * Emulation of Linux signals * * Copyright (c) 2003 Fabrice Bellard * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public
www.eeworm.com/read/227822/14411023

c signal.c

/* * Emulation of Linux signals * * Copyright (c) 2003 Fabrice Bellard * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Publi
www.eeworm.com/read/227521/14421680

m signal.m

function y=signal(t) n=length(t); for i=1:n y(i)=x(t(i)); end