代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/184890/9067081
cpp array.cpp
//: C16:Array.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include "../require.h"
#include
www.eeworm.com/read/381627/9081440
c array.c
/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
This file is public domain and comes with NO WARRANTY of any kind */
/*
Code for handling arrays with can grow dynam
www.eeworm.com/read/381242/9100830
mat array.mat
www.eeworm.com/read/381207/9104620
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/381207/9104643
fig array.fig
www.eeworm.com/read/281807/9133344
mat array.mat
www.eeworm.com/read/281673/9141799
cpp array.cpp
//: C16:Array.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include "../require.h"
#include
www.eeworm.com/read/379711/9182089
c array.c
/*
* linux/fs/proc/array.c
*
* Copyright (C) 1992 by Linus Torvalds
* based on ideas by Darren Senn
*
* stat,statm extensions by Michael K. Johnson, johnsonm@stolaf.edu
*/
#inclu
www.eeworm.com/read/182612/9198544
h array.h
#include
#include
template
class array
{
public:
array(int i);
~array()
{ delete []a; }
T & operator[](int i);
private:
int length;
T *a;