代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/259580/11780939
output maxheap.output
Heap size is 3
Elements in array order are
20 10 5
Heap size is 5
Elements in array order are
30 20 5 10 15
The max element is 30
The max element is 20
The max element is 15
Heap si
www.eeworm.com/read/258869/11835593
pas setupapi.pas
{******************************************************************}
{ }
{ Borland Delphi Runtime Library
www.eeworm.com/read/258599/11852638
txt errata.txt
Errata for Pointers on C
--------------------------------------------------------------------------------
Please send errata to -- thanks!
----------------------------------------------------
www.eeworm.com/read/154775/11927210
summary
A Quick Summary of raidreconf
History:
Raidreconf was originally written by Jakob Oestergaard in 1999. This package
could convert between any block device and a Software RAID-0 array. Convert
inc
www.eeworm.com/read/154775/11927314
5 raidtab.5
.\" -*- nroff -*-
.TH raidtab 5
.SH NAME
raidtab \- configuration file for md (RAID) devices
.SH DESCRIPTION
\fB/etc/raidtab\fR is the default configuration file for the raid
tools (\fBraidstart\fP an
www.eeworm.com/read/154058/11991346
bas aml_func.bas
Attribute VB_Name = "aml_func"
' Environmental Systems Research Institute, Inc.
'Module Name: aml_func.bas
'Description: Used to perform AML-like functions for string manipipulation.
'
www.eeworm.com/read/256102/12028211
cpp fig08_16.cpp
// Fig. 8.16: fig08_16.cpp
// Sizeof operator when used on an array name
// returns the number of bytes in the array.
#include
using std::cout;
using std::endl;
size_t getSize( doub
www.eeworm.com/read/256102/12028318
cpp fig07_08.cpp
// Fig. 7.8: fig07_08.cpp
// Compute the sum of the elements of the array.
#include
using std::cout;
using std::endl;
int main()
{
const int arraySize = 10; // constant variable
www.eeworm.com/read/256102/12028349
cpp fig07_04.cpp
// Fig. 7.4: fig07_04.cpp
// Initializing an array in a declaration.
#include
using std::cout;
using std::endl;
#include
using std::setw;
int main()
{
// use initi
www.eeworm.com/read/256102/12028354
cpp fig07_03.cpp
// Fig. 7.3: fig07_03.cpp
// Initializing an array.
#include
using std::cout;
using std::endl;
#include
using std::setw;
int main()
{
int n[ 10 ]; // n is an array