代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/458682/7291425
sh empty-array.sh
#!/bin/bash
# empty-array.sh
# Thanks to Stephane Chazelas for the original example,
#+ and to Michael Zick and Omair Eshkenazi for extending it.
# An empty array is not the same as an array with
www.eeworm.com/read/458682/7291447
sh array-function.sh
#!/bin/bash
# array-function.sh: Passing an array to a function and...
# "returning" an array from a function
Pass_Array ()
{
local passed_array # Local variable.
passed_arra
www.eeworm.com/read/458682/7291491
sh script-array.sh
#!/bin/bash
# script-array.sh: Loads this script into an array.
# Inspired by an e-mail from Chris Martin (thanks!).
script_contents=( $(cat "$0") ) # Stores contents of this script ($0)
www.eeworm.com/read/458682/7291651
bash array-append.bash
#! /bin/bash
# array-append.bash
# Copyright (c) Michael S. Zick, 2003, All rights reserved.
# License: Unrestricted reuse in any form, for any purpose.
# Version: $ID$
#
# Slightly modified in forma
www.eeworm.com/read/458682/7291672
sh array-ops.sh
#!/bin/bash
# array-ops.sh: More fun with arrays.
array=( zero one two three four five )
# Element 0 1 2 3 4 5
echo ${array[0]} # zero
echo ${array:0} # zero
www.eeworm.com/read/456283/7352771
m array_ldpc.m
function Array = Array_LDPC(p,j,k,output_file)
%Input Array(p,j,k) as defined in Fujita paper
invalid_parameters = 0;
if(isprime(p) && mod(p,2)) %checking
www.eeworm.com/read/455575/7369935
txt suffix array.txt
#include
#include
using namespace std;
typedef unsigned char uchar;
void CreateSuffixArray(uchar* szText,
int L, int** _S, int** _R, int** _T1, int** _T2)
{
www.eeworm.com/read/455033/7379100
hpp array_tlp.hpp
// -*- Mode : c++ -*-
//
// SUMMARY :
// USAGE :
// ORG :
// AUTHOR : Frederic Hecht
// E-MAIL : hecht@ann.jussieu.fr
//
/*
This file is part of Freefem++
Freefem++