搜索结果
找到约 417 项符合
each 的查询结果
按分类筛选
- 全部分类
- 其他书籍 (27)
- 其他 (27)
- matlab例程 (23)
- Java编程 (21)
- 单片机开发 (19)
- 书籍 (18)
- 单片机编程 (16)
- Java书籍 (14)
- 人工智能/神经网络 (11)
- VC书籍 (11)
- 电源技术 (10)
- VHDL/FPGA/Verilog (9)
- 电子书籍 (9)
- 软件设计/软件工程 (8)
- 数据结构 (8)
- 技术资料 (7)
- Linux/Unix编程 (6)
- 技术管理 (6)
- 数值算法/人工智能 (6)
- 模拟电子 (5)
- 网络 (5)
- 系统设计方案 (5)
- 文件格式 (5)
- 其他数据库 (5)
- 数学计算 (5)
- 书籍源码 (5)
- 加密解密 (5)
- 文章/文档 (5)
- 游戏 (4)
- 操作系统开发 (4)
- 行业发展研究 (4)
- DSP编程 (4)
- 软件工程 (4)
- SQL Server (4)
- 驱动编程 (4)
- 微处理器开发 (4)
- 通讯/手机编程 (4)
- 教程资料 (3)
- 可编程逻辑 (3)
- 测试测量 (3)
- 压缩解压 (3)
- 邮电通讯系统 (3)
- 通讯编程文档 (3)
- Jsp/Servlet (3)
- GPS编程 (3)
- 论文 (3)
- 嵌入式综合 (2)
- 无线通信 (2)
- ARM (2)
- C/C++语言编程 (2)
- 接口技术 (2)
- 中间件编程 (2)
- 串口编程 (2)
- 嵌入式/单片机编程 (2)
- Applet (2)
- 编译器/解释器 (2)
- Linux/uClinux/Unix编程 (2)
- 行业应用文档 (1)
- 多媒体处理 (1)
- 通信网络 (1)
- 技术书籍 (1)
- 开发工具 (1)
- 实用工具 (1)
- 源码/资料 (1)
- Internet/网络编程 (1)
- Windows Mobile (1)
- 编辑器/阅读器 (1)
- 其他嵌入式/单片机内容 (1)
- 人物传记/成功经验 (1)
- 并行计算 (1)
- uCOS (1)
- 手机短信编程 (1)
- 教育系统应用 (1)
- Windows CE (1)
- Delphi/CppBuilder (1)
- 其他行业 (1)
- CA认证 (1)
- USB编程 (1)
- 嵌入式Linux (1)
- Delphi控件源码 (1)
- Ajax (1)
- Symbian (1)
- JavaScript (1)
- 手册 (1)
- 其他 (1)
- 笔记 (1)
- 源码 (1)
- VIP专区 (1)
单片机开发 This will sample all 8 A/D-channels. The result will be send out via UART1 and can be seen within
This will sample all 8 A/D-channels.
The result will be send out via UART1 and can be seen within
any terminal-program (9600 Baud).
With each pressed key the next channel will be converted.
No interrupts are used.
数据结构 /* * The internal form of a hash table. * * The table is an array indexed by the hash of the k
/*
* The internal form of a hash table.
*
* The table is an array indexed by the hash of the key collisions
* are resolved by hanging a linked list of hash entries off each
* element of the array. Although this is a really simple design it
* isn t too bad given that pools have a low allocation ...
邮电通讯系统 This example describes how to use the ADC and DMA to transfer continuously converted data from ADC
This example describes how to use the ADC and DMA to transfer continuously
converted data from ADC to a data buffer.
The ADC is configured to converts continuously ADC channel14.
Each time an end of conversion occurs the DMA transfers, in circular mode, the
converted data from ADC1 DR register to t ...
其他 Obtain the CDF plots of PAPR from an OFDM BPSK transmission specified per IEEE 802.11a specification
Obtain the CDF plots of PAPR from an OFDM BPSK transmission specified per IEEE 802.11a specification
Per the IEEE 802.11a specifications, we 52 have used subcarriers. Given so, the theoretical maximum expected PAPR is 52 (around 17dB). However, thanks to the scrambler, all the subcarriers in an OFDM ...
其他 A .zip file contains a series of scripts that were used in the MathWorks webinar "Using MATLAB to De
A .zip file contains a series of scripts that were used in the MathWorks webinar "Using MATLAB to Develop Portfolio Optimization Models." The scripts generate 3D efficient frontiers for a universe of 44 stocks with time as the third axis. Additional scripts perform various ex-ante and ex-post analys ...
其他 A technical trading system comprises a set of trading rules that can be used to generate trading sig
A technical trading system comprises a set of trading rules that can be used to generate trading signals. In general, a simple trading system has one or two parameters that determine the timing of trading signals. Each rule contained in a trading system is the results of parameterizations.
(Source ...
数值算法/人工智能 KMEANS Trains a k means cluster model.CENTRES = KMEANS(CENTRES, DATA, OPTIONS) uses the batch K-mean
KMEANS Trains a k means cluster model.CENTRES = KMEANS(CENTRES, DATA, OPTIONS) uses the batch K-means
algorithm to set the centres of a cluster model. The matrix DATA
represents the data which is being clustered, with each row
corresponding to a vector. The sum of squares error function is used.
The ...
数学计算 Probabilistic Principal Components Analysis. [VAR, U, LAMBDA] = PPCA(X, PPCA_DIM) computes the princ
Probabilistic Principal Components Analysis. [VAR, U, LAMBDA] = PPCA(X, PPCA_DIM) computes the principal
% component subspace U of dimension PPCA_DIM using a centred covariance
matrix X. The variable VAR contains the off-subspace variance (which
is assumed to be spherical), while the vector LAMBDA ...
数值算法/人工智能 遗传算法和“货郎担” 问题: "The traveling salesman problem, or TSP for short, is this: given a finite number of
遗传算法和“货郎担” 问题:
"The traveling salesman problem, or TSP for short, is this: given a finite number of cities along with the cost of travel between each pair of them, find the cheapest way of visiting all the cities and returning to your starting point."
中间件编程 AppWizard has created this QMPlugin DLL for you. This file contains a summary of what you will f
AppWizard has created this QMPlugin DLL for you.
This file contains a summary of what you will find in each of the files that
make up your QMPlugin application.