代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/223105/14658666
cpp chapter3-10.cpp
//文件名:CHAPTER3-10.cpp
#include
template
class Array
{ T *ar;
public:
Array(int c){ar=new T[c];}
void init(int n,T x){ar[n]=x; }
T& operator[](int n){return ar[n];}
www.eeworm.com/read/223063/14662302
cpp pgm15_04.cpp
//
// This file contains the C++ code from Program 15.4 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/223063/14662496
cpp pgm15_06.cpp
//
// This file contains the C++ code from Program 15.6 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/223063/14662738
cpp pgm04_20.cpp
//
// This file contains the C++ code from Program 4.20 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/221894/14715469
cpp 6_9.cpp
#include
void main()
{
int array2[2][3]={{11,12,13},{21,22,23}}; //声明二维整型数组
for(int i=0;i
www.eeworm.com/read/120093/14812944
rea malloc~1.rea
###########################################################
Information on file: malloc4.c
Written by Xavier Bouyssounouse.
###########################################################
Routines in
www.eeworm.com/read/119982/14815309
c funct_2d.c
#include
void show_2d_array(int array[][10], int rows)
{
int i, j;
for (i = 0; i < rows; i++)
for (j = 0; j < 10; j++)
printf("array[%d][%d] = %d\n", i, j, array
www.eeworm.com/read/217873/14946388
h asarray.h
/*
* FILE: asarray.h
* AUTHORS: Orion Hodson
*
* Associative array for strings. Perloined from RAT settings code.
*
* Copyright (c) 1999-2000 University College London
* All rights
www.eeworm.com/read/216898/14987833
cpp debug.cpp
#include
using namespace blitz;
int main()
{
Array Z(4,4);
Z = complex(0.0, 1.0);
Z(4,4) = complex(1.0, 0.0);
return 0;
}
www.eeworm.com/read/216898/14987888
texi debug.texi
#include
using namespace blitz;
int main()
@{
Array Z(4,4);
Z = complex(0.0, 1.0);
Z(4,4) = complex(1.0, 0.0);
return 0;
@}