代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/120385/14804498
c try_array.c
#include "Array.h"
template
void try_array( Array &iA )
{
cout
www.eeworm.com/read/119982/14815245
cpp array_io.cpp
#include
#include
void main(void)
{
char iostr[80];
strstream ios(iostr, sizeof(iostr), ios::in | ios::out);
char str[80];
int a, b;
ios
www.eeworm.com/read/117410/14924472
rc2 array.rc2
//
// ARRAY.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
/////
www.eeworm.com/read/217561/14958333
h dynamic_array.h
/*
* Dynamic array, to store all your flims in Includes macros required
* to create an array of strings but as the primitive type for the
* array is void * providing your own duplica
www.eeworm.com/read/217561/14958352
c dynamic_array.c
/*
* Dynamic array, to store all your flims in Includes macros required
* to create an array of strings but as the primitive type for the
* array is void * providing your own duplica
www.eeworm.com/read/217557/14958750
m append_array.m
function A = append_array(A,B)
% Append a 1-dimensional `cell array` to another 1-dimensional cell array
%
% Syntax:
% "A = append_array(A,B)"
%
% Description:
% Appends the content of th
www.eeworm.com/read/116603/14962698
java array3.java
// A 3d array
public class Array3 {
public static void main(String[] args) {
int[] a1 = {10,20,30,40,50};
int[][] a2 = {{1,2}, {3,4}, {5,6}};
int[][][] a3 = new int[2]
www.eeworm.com/read/116603/14962700
java array2.java
// A 2d array
public class Array2 {
public static void main(String[] args) {
int[][] a2 = {{1,2}, {3,4}, {5,6}};
for (int j = 0; j < a2.length; ++j) {
for (int k =
www.eeworm.com/read/116603/14962708
java array1.java
// A 1d array
public class Array1 {
public static void main(String[] args) {
int[] a1 = {10,20,30,40,50};
for (int i = 0; i < a1.length; ++i)
System.out.print(a1[i
www.eeworm.com/read/216914/14986557
h safe_array.h
/*
Copyright (C) 2004-2005 Timothy C.A. Molteno
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Fre