代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/474431/6809251
c find_int.c
/*
** Find the place in an array where a particular integer value
** is stored, and return a pointer to that location.
*/
#include
int *
find_int( int key, int array[], int array_len
www.eeworm.com/read/473001/6853882
cpp ctime5.cpp
#include
using namespace blitz;
int main()
{
}
void foo()
{
const int N = 10;
Array A(N), B(N), C(N), D(N), E(N);
A = B*C + D*E;
A = B+C + D*co
www.eeworm.com/read/294461/8224445
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/292600/8346316
f cal.f
SUBROUTINE CALARR(i,j,array)
$ATTRIBUTES DLLEXPORT :: CALARR
INTEGER I,J
REAL(4) ARRAY
ARRAY=20.1*I+J
END SUBROUTINE
www.eeworm.com/read/335795/12498642
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/147311/12568462
html arraydim.html
Getting the Length and Dimensions of an Array Object
(Java Developers Almanac Example)
www.eeworm.com/read/147311/12568480
html expandarray.html
Expanding an Array
(Java Developers Almanac Example)
www.eeworm.com/read/247673/12633037
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/135898/13888852
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/237003/13982826
cpp reduce.cpp
/*****************************************************************************
* reduce.cpp Blitz++ array reduction example
*
* This example illustrates the array reduction functions provided b