代码搜索:Microphone array

找到约 10,000 项符合「Microphone array」的源代码

代码结果 10,000
www.eeworm.com/read/187229/8840016

pas ras.pas

{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Unit: Remote Access Service (RAS) Creation: Feb 18, 1997. Translated from MS-Visual C 4.2 header files
www.eeworm.com/read/384573/8859685

de decl.de

label theend; const {* Change any of these parameters to match your needs *} VTR = 1.0e-25; {* "Value To Reach". devec3 will stop its minimization if eithe
www.eeworm.com/read/384340/8879864

m butler.m

%This Program is Designed To Simulate The Operation Of Butler Matrix Using Hamming Window %General Antenna Array Specifications m = input ('The Number of Array Elements : ') ; Msgbox ('Enter The I
www.eeworm.com/read/384340/8879880

m pattern.m

%A General Code for The Radiation Pattern Representation of The Array Factor of A Linear Antenna Array %General Antenna Array Specifications N = input ('The Number Of Array Elements : ') ; K = inpu
www.eeworm.com/read/428081/8896847

c 07_03.c

/* http://blog.csdn.net/babykaokao/archive/2008/04/22/2316076.aspx */ /* 假设有一个二维整型数组,存放着不同的整数。请编写一个函数求出该二维数组中所有鞍点。 所谓鞍点指该元素的值在所在行中是最大的,在所在列中是最小的。其函数的形式为: int f(int a[M][N],int m,int n,in
www.eeworm.com/read/384084/8900897

cpp c34.cpp

// c34.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "Array.h" #include int main(int argc, char* argv[]) { int width = 5; int le
www.eeworm.com/read/284698/8908733

c ex4-6.c

#include void sort (array, n) int array[]; int n; { int i, j, k, t; for (i=0; i
www.eeworm.com/read/186780/8910646

pl0 for_arr_pp.pl0

PROGRAM MAIN; VAR I:ARRAY[1..10] OF INTEGER; K,J:INTEGER; BEGIN K:=1; FOR J:=1 TO 5 DO BEGIN I[J]:=J; K++; WRITE(K); WRITE(I[J]); END; FOR J:=1 TO 5 DO WRITE(I[J]);
www.eeworm.com/read/284588/8915514

txt vander.txt

procedure VANDER(X:array of real;var W:array of real; Q:array of real; N:integer); const NMAX = 100; ZERO = 0; ONE = 1; var C:array[0..100] of rea
www.eeworm.com/read/284556/8918929

h bitmap.h

// bitmap.h // Data structures defining a bitmap -- an array of bits each of which // can be either on or off. // // Represented as an array of unsigned integers, on which we do // modulo arithmetic