代码搜索:Microphone array

找到约 10,000 项符合「Microphone array」的源代码

代码结果 10,000
www.eeworm.com/read/253867/12180722

c try_array.c

#include "Array.h" template void try_array( Array &iA ) { cout
www.eeworm.com/read/339953/12192141

bmp array32.bmp

www.eeworm.com/read/339953/12192208

bmp array16.bmp

www.eeworm.com/read/339483/12230391

bash array-assign.bash

#! /bin/bash # array-assign.bash # Array operations are Bash specific, #+ hence the ".bash" in the script name. # Copyright (c) Michael S. Zick, 2003, All rights reserved. # License: Unrestricted r
www.eeworm.com/read/339483/12230460

sh array-strops.sh

#!/bin/bash # array-strops.sh: String operations on arrays. # Script by Michael Zick. # Used with permission. # In general, any string operation in the ${name ... } notation #+ can be applied to all
www.eeworm.com/read/339483/12230641

sh empty-array.sh

#!/bin/bash # empty-array.sh # Thanks to Stephane Chazelas for the original example, #+ and to Michael Zick for extending it. # An empty array is not the same as an array with empty elements. arr
www.eeworm.com/read/339483/12230708

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/339483/12230832

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/339483/12231387

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/339483/12231463

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