代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/161446/10412380
c sysmotvpdutil.c
/* sysMotVpdUtil.c - Vital Product Data Routines. */
/* Copyright 1984-2000 Wind River Systems, Inc. */
/* Copyright 1998-2000 Motorola, Inc., All Rights Reserved */
/*
modification history
--------
www.eeworm.com/read/279369/10443069
bas spihard.bas
' -------------------------------------------------------------------
' SPIHARD.BAS
' SPI demo for the hardware SPI found in the 89S8252
' -----------------------------
www.eeworm.com/read/279234/10452491
pl fig04_09.pl
#!/usr/bin/perl
# Fig. 4.9: fig04_09.pl
# Demonstrating array slices and list assignment.
@array =
qw( zero one two three four five six seven eight nine );
print "@array\n\n";
# display
www.eeworm.com/read/279234/10452508
pl fig04_11.pl
#!/usr/bin/perl
# Fig. 4.11: fig04_11.pl
# Demonstrating function splice.
# create two arrays and display their initial contents
@array = ( 0 .. 20 );
@array2 = ( A .. F );
print "\@array: @a
www.eeworm.com/read/279234/10452511
pl fig04_10.pl
#!/usr/bin/perl
# Fig. 4.10: fig04_10.pl
# Demonstrating the push, pop, shift and unshift functions.
# Use push to insert elements at the end of @array.
for ( $i = 1; $i
www.eeworm.com/read/279234/10452524
pl fig04_12.pl
#!/usr/bin/perl
# Fig. 4.12: fig04_12.pl
# Reversing the elements of an array and
# sorting arrays lexically and numerically.
# create @array with values from 1-10 and reverse the values
@arra
www.eeworm.com/read/279234/10453384
pl fig09_08.pl
#!usr/bin/perl
# Fig. 9.5: join.pl
# The join function
use warnings;
use strict;
my ( @array, $line, $string );
print "Input several words on separate ";
print "lines, typing \"done\" whe
www.eeworm.com/read/279234/10453773
pl fig06_19.pl
#!/usr/bin/perl
# Fig 6.19: fig06_19.pl
# program to use our first module
use FirstModule; # import identifiers from another package
print "Using automatically imported names:\n";
print "\@
www.eeworm.com/read/279234/10453787
pl fig15_18.pl
#!/usr/bin/perl
# Fig. 15.18: fig15_18.pl
# Program to query a database and display the contents in a table
use warnings;
use strict;
use DBI;
use DBD::ODBC;
my $dbh = DBI->connect( "DBI:
www.eeworm.com/read/279234/10453826
pl fig05_06.pl
#!/usr/bin/perl
# Fig. 5.6: fig05_06.pl
# Using foreach loops with hashes.
@opinions = qw( what word is being used most in this array is
what this is used what most is is array w