代码搜索:Array Signal Processing

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

代码结果 10,000
www.eeworm.com/read/219036/14897327

java anwtfilterint.java

/* * CVS identifier: * * $Id: AnWTFilterInt.java,v 1.7 2000/09/05 09:25:42 grosbois Exp $ * * Class: AnWTFilterInt * * Description: A specialized wavelet fi
www.eeworm.com/read/219036/14897343

java synwtfilterint.java

/* * CVS identifier: * * $Id: SynWTFilterInt.java,v 1.7 2000/09/05 09:26:35 grosbois Exp $ * * Class: SynWTFilterInt * * Description: A specialized synthesi
www.eeworm.com/read/362152/10015612

m lchirp.m

function x = lchirp( T, W, p ) %LCHIRP generate a sampled chirp signal with % linear frequency modulation %----- exp(j(W/T)pi*t^2) -T/2
www.eeworm.com/read/409205/11341455

m lchirp.m

function x = lchirp( T, W, p ) %LCHIRP generate a sampled chirp signal with % linear frequency modulation %----- exp(j(W/T)pi*t^2) -T/2
www.eeworm.com/read/207278/15275925

m lchirp.m

function x = lchirp( T, W, p ) %LCHIRP generate a sampled chirp signal with % linear frequency modulation %----- exp(j(W/T)pi*t^2) -T/2
www.eeworm.com/read/334935/12561068

m lchirp.m

function x = lchirp( T, W, p ) %LCHIRP generate a sampled chirp signal with % linear frequency modulation %----- exp(j(W/T)pi*t^2) -T/2
www.eeworm.com/read/292075/8379038

class signal.class

www.eeworm.com/read/192259/8390760

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/291779/8395931

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/291779/8396086

c signal.c

/* * linux/kernel/<mark>signal</mark>.c * * (C) 1991 Linus Torvalds */ /* 注意:<mark>signal</mark>.c和fork.c文件的编译选项内不能有vc变量优化选项/Og,因为这两个文件 内的函数参数内包含了函数返回地址等内容。如果加了/Og选项,编译器就会在认为 这些参数不再使用后占用该内存,导致函数返回时出错。 math/math_emulat ...