代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/391151/8419500
h dotp4.h
//dotp4.h Header file with two arrays
#define x_array 1,2,3,4
#define y_array 0,2,4,6
www.eeworm.com/read/291235/8432364
cpp xshell.cpp
#include
#include
#include
#include
#include "nr.h"
#include "print_array.h"
using namespace std;
// Driver for routine shell
int main(void)
{
www.eeworm.com/read/291235/8432707
cpp xpiksrt.cpp
#include
#include
#include
#include
#include "nr.h"
#include "print_array.h"
using namespace std;
// Driver for routine piksrt
int main(void)
{
www.eeworm.com/read/291235/8432730
cpp xhpsort.cpp
#include
#include
#include
#include
#include "nr.h"
#include "print_array.h"
using namespace std;
// Driver for routine hpsort
int main(void)
{
www.eeworm.com/read/291235/8432819
cpp xsort.cpp
#include
#include
#include
#include
#include "nr.h"
#include "print_array.h"
using namespace std;
// Driver for routine sort
int main(void)
{
www.eeworm.com/read/189298/8477229
c clrarray.c
/*
** Set all of the elements of an array to zero.
*/
void
clear_array( int array[], int n_elements )
{
/*
** Clear the elements of the array starting with the last
** and working towards
www.eeworm.com/read/290380/8486375
c sum_2d.c
#include
long sum_array(int array[], int elements)
{
long sum = 0;
int i;
for (i = 0; i < elements; i++)
sum += array[i];
return(sum);
}
void main(voi
www.eeworm.com/read/290380/8486511
c hugeint.c
#include
#include
void main (void)
{
long int i;
int huge *big_array;
if ((big_array = (int huge *) halloc (100000L,
sizeof(long int))) == NULL)