代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/490996/6439118
class array.class
www.eeworm.com/read/490938/6445930
h array.h
/*****************************************************************************
Array.h
Copyright (c) 2005 Laurent de Soras
--- Legal stuff ---
This library is free software;
www.eeworm.com/read/490938/6445943
hpp array.hpp
/*****************************************************************************
Array.hpp
Copyright (c) 2005 Laurent de Soras
--- Legal stuff ---
This library is free software
www.eeworm.com/read/489524/6472574
m array.m
function varargout = array(varargin)
% ARRAY M-file for array.fig
% ARRAY, by itself, creates a new ARRAY or raises the existing
% singleton*.
%
% H = ARRAY returns the handle to a
www.eeworm.com/read/489524/6472582
fig array.fig
www.eeworm.com/read/488546/6489224
h array.h
/* $Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $ */
#ifndef ARRAY_INCLUDED
#define ARRAY_INCLUDED
#define T Array_T
typedef struct T *T;
extern T Array_new (int le
www.eeworm.com/read/488546/6489236
c array.c
static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $";
#include
#include
#include "assert.h"
#include "array.h"
#include "arrayr
www.eeworm.com/read/487037/6522686
cc array.cc
#include
using namespace std;
int main()
{
int a[5]={10,20,30,40,50};
char b[8]={"abcdefg"};
int* pa = a;
char* pb = b;
for(int i=0; i
www.eeworm.com/read/487037/6522762
doc array.doc
www.eeworm.com/read/487037/6522808
cc array.cc
#include
using namespace std;
int main()
{
int a[5];
short b[3]={10,20,30};
double c[4]={1.1, 2.2};
cout