代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/148785/12426813
c array.c
#ifndef ARRAY_C
#define ARRAY_C
#include
#include "Array.h"
template
const int Array::DefaultArraySize = 12;
template
void Array
www.eeworm.com/read/234146/14120764
c array.c
/* Demo of simple 2 dimensional array operation.
*
* Written by Cyril Hu (cyrilhu@gmail.com), public domain.
*/
#include
#include
int main(void)
{
static int a
www.eeworm.com/read/131664/14133772
cpp array.cpp
// array.cpp: implementation of the array class.
//
//////////////////////////////////////////////////////////////////////
#include "array.h"
//#define debug
/////////////////////////////////////
www.eeworm.com/read/131664/14133776
h array.h
// array.h: interface for the array class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ARRAY_H__5EEC9419_F521_46AC_A79E_930C2C178B11__INCLUDED_)
#d
www.eeworm.com/read/233206/14163230
exe array.exe
www.eeworm.com/read/233206/14163234
cpp array.cpp
/*
array.cpp -- Initializing array of class with multiple
arguments in the constructor.
*/
#include
#include
class CEmployee
{
public:
C
www.eeworm.com/read/233206/14163235
obj array.obj
www.eeworm.com/read/130490/14190005
c array.c
/* Copyright (C) 2001-2002 Mikael Ylikoski
* See the accompanying file "README" for the full copyright notice */
/**
* @file
* Dynamic arrays.
*
* @author Mikael Ylikoski
* @date 2001-2002
www.eeworm.com/read/130490/14190205
h array.h
typedef struct ARRAY_FUNC(_) ARRAY_NAME;
struct ARRAY_FUNC(_) {
ARRAY_TYPE *value; /**< Values */
int nov; /**< Number Of Values */
int sov; /**< Size Of Values */
};
/**
* Get value
www.eeworm.com/read/129561/14238474
hpp array.hpp
#ifndef _RAR_ARRAY_
#define _RAR_ARRAY_
extern ErrorHandler ErrHandler;
template class Array
{
private:
T *Buffer;
int BufSize;
int AllocSize;
public:
Array();
Arra