代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/221024/14773624
html http:^^www.cs.cornell.edu^info^courses^current^cs100b^info5.html
MIME-Version: 1.0
Server: CERN/3.0
Date: Sunday, 24-Nov-96 22:46:43 GMT
Content-Type: text/html
Content-Length: 2963
Last-Modified: Friday, 15-Nov-96 18:02:45 GMT
CS100B
www.eeworm.com/read/120385/14804393
cpp main11.cpp
// Section 10.11
// $ CC main11.C
/*
sort array of doubles (size == 10)
< 1.7 5.7 11.7 15.7 19.7 26.7 37.7 48.7 59.7 61.7 >
sort array of ints (size == 16)
< 61 87 154 170 275 426 503
www.eeworm.com/read/216898/14986959
cpp reduce.cpp
/*****************************************************************************
* reduce.cpp Blitz++ array reduction example
*
* This example illustrates the array reduction functions provided b
www.eeworm.com/read/216898/14986995
cpp convolve.cpp
#include
#include
using namespace blitz;
int main()
{
Array B(Range(-2,+2));
Array C(Range(10,15));
B = 1, 0, 2, 5, 3;
C =
www.eeworm.com/read/216898/14987718
cpp acou3db4.cpp
#include
#include
BZ_USING_NAMESPACE(blitz)
void setupInitialConditions(Array& P1, Array& P2,
Array& P3, Array& c, in
www.eeworm.com/read/216898/14987817
texi strideslice.texi
#include
using namespace blitz;
int main()
@{
Array A(8,8);
A = 0;
Array B = A(Range(1,7,3), Range(1,5,2));
B = 1;
cout
www.eeworm.com/read/216898/14987822
cpp outer.cpp
#include
using namespace blitz;
int main()
{
Array x(4), y(4);
Array A(4,4);
x = 1, 2, 3, 4;
y = 1, 0, 0, 1;
firstIndex i;
secondIndex j;
www.eeworm.com/read/216898/14987826
texi outer.texi
#include
using namespace blitz;
int main()
@{
Array x(4), y(4);
Array A(4,4);
x = 1, 2, 3, 4;
y = 1, 0, 0, 1;
firstIndex i;
secondIndex j;
www.eeworm.com/read/216898/14987837
cpp simple.cpp
#include
using namespace blitz;
int main()
{
Array A(3,3), B(3,3), C(3,3);
A = 1, 0, 0,
2, 2, 2,
1, 0, 0;
B = 0, 0, 7,
0, 8, 0,
www.eeworm.com/read/216898/14987839
texi dump.texi
#include
using namespace blitz;
int main()
@{
Array A(3,7,8,2,FortranArray());
A.dumpStructureInformation(cerr);
return 0;
@}