代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/188512/8533212
cpp fig07_04.cpp
// Fig. 7.4: fig07_04.cpp
// Initializing an array in a declaration.
#include
using std::cout;
using std::endl;
#include
using std::setw;
int main()
{
// use initi
www.eeworm.com/read/188512/8533221
cpp fig07_03.cpp
// Fig. 7.3: fig07_03.cpp
// Initializing an array.
#include
using std::cout;
using std::endl;
#include
using std::setw;
int main()
{
int n[ 10 ]; // n is an array
www.eeworm.com/read/289184/8569344
c arrayadd.c
#include
void main(void)
{
int count[10];
float salaries[5];
long distances[10];
printf("Address of the array count is %x\n", count);
printf("Address of the array
www.eeworm.com/read/289184/8569423
c arraytwo.c
#include
void main(void)
{
int count[10];
float salaries[5];
long distances[10];
printf("Address of the array count is %x &count is %x\n",
count, &count);
p
www.eeworm.com/read/388784/8575760
h checkedptr.h
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/432641/8584899
c misc.c
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the l
www.eeworm.com/read/387489/8672902
pas unit2.pas
unit Unit2;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls,unit1, Forms, Dialogs;
Function GASDEV:real;
Procedure SVDVAR(V:matrx2; MA, NP:integer; W:array of real;
www.eeworm.com/read/387489/8673014
txt polcof.txt
procedure POLCOF(XA, YA:array of real; N:integer; var COF:array of real);
var
X, Y:array[0..15] of real;
I,J,K:integer;
XMIN,DY:real;
begin
For J:=1 To N do
begin
X
www.eeworm.com/read/387489/8674112
pas unit2.pas
unit Unit2;
interface
uses
unit1;
Procedure TRED2(var A:matrx2; N:integer;
var D:array of real;var E:array of real);
implementation
Procedure TRED2(var A:matrx2; N:
www.eeworm.com/read/387489/8674137
pas unit2.pas
unit Unit2;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls,unit1, Forms, Dialogs;
Procedure TRED2(var A:matrx2; N:integer;
var D:array of real;