代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/479166/6700158
cpp fig08_16.cpp
// Fig. 8.16: fig08_16.cpp
// Sizeof operator when applied to an array name
// returns the number of bytes in the array.
#include
using std::cout;
using std::endl;
size_t getSize( d
www.eeworm.com/read/479166/6700198
cpp fig07_08.cpp
// Fig. 7.8: fig07_08.cpp
// Compute the sum of the elements of the array.
#include
using std::cout;
using std::endl;
int main()
{
const int arraySize = 10; // constant variable
www.eeworm.com/read/479166/6700212
cpp fig07_14.cpp
// Fig. 7.14: fig07_14.cpp
// Passing arrays and individual array elements to functions.
#include
using std::cout;
using std::endl;
#include
using std::setw;
void modif
www.eeworm.com/read/479166/6700214
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/479166/6700216
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/476355/6757872
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/476355/6757892
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/410206/11298446
m inpoly.m
function [cn,on] = inpoly(p,node,edge)
% INPOLY: Point-in-polygon testing.
%
% Determine whether a series of points lie within the bounds of a polygon
% in the 2D plane. General non-convex, mul
www.eeworm.com/read/410206/11298506
m inpoly.m
function [cn,on] = inpoly(p,node,edge)
% INPOLY: Point-in-polygon testing.
%
% Determine whether a series of points lie within the bounds of a polygon
% in the 2D plane. General non-convex, mul