代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/286613/8755824
cpp p4-200.cpp
#include
#include
#include
#include
#define ARRAY_SIZE 15
using namespace std;
//显示数组
void put_array(int x[],int size) {
for(int i=0;i
www.eeworm.com/read/286613/8756322
cpp p4-196.cpp
#include
#include
#include
#define ARRAY_SIZE 10
using namespace std;
//利用类模板生成实例
typedef vector < int > IntArray;
//显示数组
void put_array(int x[],int size) {
www.eeworm.com/read/286613/8756378
cpp p4-199.cpp
#include
#include
#include
#include
#define ARRAY_SIZE 15
using namespace std;
//定义整型数的vector容器类
typedef vector IntVector ;
//显示数组
void pu
www.eeworm.com/read/286613/8756402
cpp p4-200.cpp
#include
#include
#include
#include
#define ARRAY_SIZE 15
using namespace std;
//显示数组
void put_array(int x[],int size) {
for(int i=0;i
www.eeworm.com/read/286602/8757300
txt 例8.4.txt
例8.4 找出一个整型数组中的元素的最大值。
这个问题可以不用类的方法来解决,现在用类来处理,读者可以比较不同方法的特点。
#include
using namespace std;
class Array_max //声明类
{public: //以下3行为成员函数原型声明
voi
www.eeworm.com/read/384468/8867678
s ec_arm_linux.s
.global cq_ntohl
.global cq_ntohl_array
.global cq_ntohs
.global cq_ntohs_array
cq_ntohl:
stmdb sp!,{r1}
eor r1, r0, r0, ROR #16
bic r1, r1, #0xFF0000
mov r0, r0, ror #8
eor r0, r0
www.eeworm.com/read/383980/8908269
txt 小波模极大值用于边缘提取.txt
% 小波模极大值用于边缘提取
clc;clear
% 下载图像
load woman
% X=double(imread('1.bmp'));
SIZE=length(X); % 图像尺寸
% 多尺度
m=1.0;
delta=2^m;
% 构造高斯函数的偏导
N=20; % 滤波器长度(需要调整,必须是偶数)
A=-1/sqrt(2*p
www.eeworm.com/read/284676/8910327
h xt8-5.h
//xt8-5.h(arraymax.h)
class Array_max
{public:
void set_value();
void max_value();
void show_value();
private:
int array[10];
int max;
};
www.eeworm.com/read/184790/9075824
txt 例8.4.txt
例8.4 找出一个整型数组中的元素的最大值。
这个问题可以不用类的方法来解决,现在用类来处理,读者可以比较不同方法的特点。
#include
using namespace std;
class Array_max //声明类
{public: //以下3行为成员函数原型声明
voi
www.eeworm.com/read/380486/9145032
c remove_neuron.c
/* remove_neuron.c */
/* Copyright 2004 Oswaldo Morizaki */
/* This file is part of ga-nn-ag.
ga-nn-ag is free software; you can redistribute it and/or modify
it under the terms of the G