代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/242201/13088822
c maximumvalue.c
// ****************************************************************
// Description: Library function to determine the
// maximum value within a integer array. Note this code stresses
// simplici
www.eeworm.com/read/241840/13112539
c minimumvalue.c
// ****************************************************************
// Description: Library function to determine the
// minimum value within a integer array. Note this code stresses
// simplici
www.eeworm.com/read/241840/13112546
c maximumvalue.c
// ****************************************************************
// Description: Library function to determine the
// maximum value within a integer array. Note this code stresses
// simplici
www.eeworm.com/read/241840/13113320
c minimumvalue.c
// ****************************************************************
// Description: Library function to determine the
// minimum value within a integer array. Note this code stresses
// simplici
www.eeworm.com/read/241840/13113325
c maximumvalue.c
// ****************************************************************
// Description: Library function to determine the
// maximum value within a integer array. Note this code stresses
// simplici
www.eeworm.com/read/324350/13269940
cpp pgm04_04.cpp
//
// This file contains the C++ code from Program 4.4 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/136972/13350490
cpp xt8-5-2.cpp
//xt8-5-2.cpp(arraymax.cpp)
#include
using namespace std;
#include "xt8-5.h"
void Array_max::set_value()
{ int i;
for (i=0;i>array[i];
}
void Array_max::ma
www.eeworm.com/read/136879/13356007
cpp fig04_13.cpp
// Fig. 4.13: fig04_13.cpp
// Static arrays are initialized to zero
#include
void staticArrayInit( void );
void automaticArrayInit( void );
int main()
{
cout
www.eeworm.com/read/315999/13532707
h c5-1.h
// c5-1.h 数组的顺序存储结构。在教科书第93页
#define MAX_ARRAY_DIM 8 // 假设数组维数的最大值为8
struct Array
{ ElemType *base; // 数组元素基址,由InitArray分配
int dim; // 数组维数
int *bounds; // 数组维界基址,由InitArray分配
int *