代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/216898/14987898
texi blitz.texi
\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename blitz.info
@include version.texi
@settitle Blitz++
@setchapternewpage odd
@finalout
@iftex
@setcontentsaftertitlepage
@afourpaper
@en
www.eeworm.com/read/216898/14988028
texi arrays-slicing.texi
@node Array slicing, Slicing combo, Array ctors, Arrays
@section Indexing, subarrays, and slicing
This section describes how to access the elements of an array. There are
three main ways:
@itemize
www.eeworm.com/read/216898/14988032
texi arrays-ctors.texi
@node Array ctors
@section Constructors
@subsection Default constructor
@cindex Array default ctor
@example
Array();
Array(GeneralArrayStorage storage)
@end example
The default constructor
www.eeworm.com/read/216898/14988112
cpp copy.cpp
#include "testsuite.h"
#include
BZ_USING_NAMESPACE(blitz)
int main()
{
Array A(1);
A(0) = 5;
Array B(1);
B = A;
}
www.eeworm.com/read/215702/15052615
cpp 6_9.cpp
//6_9.cpp
#include
using namespace std;
void main()
{
int array2[2][3]={{11,12,13},{21,22,23}}; //声明二维int型数组
for(int i=0;i
www.eeworm.com/read/214824/15086908
cpp xt6-4.cpp
#include
using namespace std;
int main()
{void move(int *array,int n,int m);
int number[20],n,m,i;
coutn;
cout
www.eeworm.com/read/114013/15118100
cpp newton.cpp
# include "iostream.h"
# include "math.h"
int const M=100; //均差表能容纳的最大维数
void main(void)
{
double e,xx;//所要达到的精度e,求值点xx
int n; //插值点数目
coutx
www.eeworm.com/read/213372/15136362
cpp xt6-4.cpp
#include
using namespace std;
int main()
{void move(int *array,int n,int m);
int number[20],n,m,i;
coutn;
cout
www.eeworm.com/read/211597/15176872
c averagevalue.c
// ****************************************************************
// Description: Library function to determine the
// average value of a integer array. Note this code stresses
// simplicity o
www.eeworm.com/read/211597/15177064
c averagevalue.c
// ****************************************************************
// Description: Library function to determine the
// average value of a integer array. Note this code stresses
// simplicity o