代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/229593/14328658
c tcc_dvb-rcs_unix.c
/* Non-binary Turbo code Test Driver: Max_log_map */
/* Creation date : Jan.17 2001 */
/* Programmer: Gao yingzi */
/* Last modified date: Nov.16 2001 */
/* This program simulates the DVB-
www.eeworm.com/read/229127/14352049
cpp main13.cpp
// Section 16.13
// $ CC main13.cpp
/*
template Array class
try_array: initial array values:
( 10 )< 12, 7, 14, 9, 128, 17, 6, 3, 27, 5 >
try_array: after assignments:
( 10
www.eeworm.com/read/126507/14418432
cpp main13.cpp
// Section 16.13
// $ CC main13.cpp
/*
template Array class
try_array: initial array values:
( 10 )< 12, 7, 14, 9, 128, 17, 6, 3, 27, 5 >
try_array: after assignments:
( 10
www.eeworm.com/read/223063/14662380
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/120385/14804238
cpp main13.cpp
// Section 16.13
// $ CC main13.cpp
/*
template Array class
try_array: initial array values:
( 10 )< 12, 7, 14, 9, 128, 17, 6, 3, 27, 5 >
try_array: after assignments:
( 10
www.eeworm.com/read/119982/14814821
cpp gen_safe.cpp
#include
#include "stdlib.h"
const int SIZE = 10;
template class atype {
AType a[SIZE];
public:
atype(void)
{
int i;
for(i=0; i
www.eeworm.com/read/119912/14817044
cpp 3.cpp
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++
//加工顺序
//作者:陈健
//学号:200153090313
//院系:信息与计算科学
//platform:windows2000pro+Visual c++ 6.0
+++++++++++++++++++++++++++++++++++++++++++++++++
www.eeworm.com/read/119473/14829602
asm pgm6_10.asm
; Conditional JMP Instructions, Part II
.386
option segment:use16
dseg segment para public 'data'
Array1 word 1, 2, 3, 4, 5, 6, 7, 8
Array2 word 8 dup (?)
String1 byte "This string
www.eeworm.com/read/216898/14986977
cpp iter.cpp
// Example of using Array::iterator
#include
BZ_USING_NAMESPACE(blitz)
int main()
{
// Create a 4x4 array and fill it with some numbers
Array A(4,4);
A = t
www.eeworm.com/read/216898/14986983
cpp simple.cpp
/*****************************************************************************
* simple.cpp Some simple array operations
**********************************************************************