代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/237003/13983662
cpp debug.cpp
#include
using namespace blitz;
int main()
{
Array Z(4,4);
Z = complex(0.0, 1.0);
Z(4,4) = complex(1.0, 0.0);
return 0;
}
www.eeworm.com/read/237003/13983709
texi debug.texi
#include
using namespace blitz;
int main()
@{
Array Z(4,4);
Z = complex(0.0, 1.0);
Z(4,4) = complex(1.0, 0.0);
return 0;
@}
www.eeworm.com/read/237003/13983726
texi blitz.texi
\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename blitz.info
@include version.texi
@settitle Blitz++
@setchapternewpage odd
@setcontentsaftertitlepage
@finalout
@iftex
@afourpaper
@en
www.eeworm.com/read/237003/13983908
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/237003/13983915
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/237003/13984014
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/236837/13996551
c funct_2d.c
#include
void show_2d_array(int array[][10], int rows)
{
int i, j;
for (i = 0; i < rows; i++)
for (j = 0; j < 10; j++)
printf("array[%d][%d] = %d\n", i, j, array
www.eeworm.com/read/204914/15331474
c funct_2d.c
#include
void show_2d_array(int array[][10], int rows)
{
int i, j;
for (i = 0; i < rows; i++)
for (j = 0; j < 10; j++)
printf("array[%d][%d] = %d\n", i, j, array
www.eeworm.com/read/202785/15373156
rea malloc~1.rea
###########################################################
Information on file: malloc4.c
Written by Xavier Bouyssounouse.
###########################################################
Routines in
www.eeworm.com/read/113775/15448611
c funct_2d.c
#include
void show_2d_array(int array[][10], int rows)
{
int i, j;
for (i = 0; i < rows; i++)
for (j = 0; j < 10; j++)
printf("array[%d][%d] = %d\n", i, j, array