代码搜索:Microphone array

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

代码结果 10,000
www.eeworm.com/read/113029/15472130

h array.h

// Fig 22.6: array.h // Simple class Array (for integers). #ifndef ARRAY_H #define ARRAY_H #include using std::ostream; // class Array definition class Array { friend ostre
www.eeworm.com/read/113029/15472131

cpp array.cpp

// Fig 22.7: array.cpp // Member function definitions for class Array. #include using std::cout; using std::ostream; #include #include "array.h" // default constructor
www.eeworm.com/read/113029/15472140

h array.h

// Fig. 22.9: array.h // Simple class Array (for integers). #ifndef ARRAY_H #define ARRAY_H #include using std::ostream; // class Array definition class Array { friend ostr
www.eeworm.com/read/113029/15472141

cpp array.cpp

// Fig. 22.10: array.cpp // Member function definitions for class Array. #include using std::cout; using std::ostream; #include #include "array.h" // default constructo
www.eeworm.com/read/112509/15484115

h array.h

/* $Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $ */ #ifndef ARRAY_INCLUDED #define ARRAY_INCLUDED #define T Array_T typedef struct T *T; extern T Array_new (int le
www.eeworm.com/read/112509/15484127

c array.c

static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $"; #include #include #include "assert.h" #include "array.h" #include "arrayr
www.eeworm.com/read/112070/15494021

h array.h

// Array.h: interface for the Array class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_ARRAY_H__98B2174E_24BC_47D4_ADF2_C32E75744776__INCLUDED_) #d
www.eeworm.com/read/112070/15494024

cpp array.cpp

// Array.cpp: implementation of the Array class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "Array.h" #include #include
www.eeworm.com/read/112005/15495754

h array.h

/********************************************************* array.h 二维数组一维动态化+矩阵 x[m][n] to x[long] ,最大方阵为5792x5792,一维为33547264 2004.11.14 14.28 ***************************************************
www.eeworm.com/read/111988/15496997

h array.h

/* 安全数组(可扩充大小) * */ #ifndef ARRAY_CLASS #define ARRAY_CLASS #include template class Array { private: // 一个动态申请的包含 size 个元素的表 T *alist; int size; public