搜索结果
找到约 286 项符合
order 的查询结果
按分类筛选
- 全部分类
- 单片机编程 (25)
- matlab例程 (22)
- 其他 (18)
- 数学计算 (16)
- 书籍 (14)
- 技术资料 (13)
- 其他书籍 (11)
- Java编程 (10)
- DSP编程 (8)
- 人工智能/神经网络 (8)
- 文章/文档 (8)
- Linux/Unix编程 (8)
- 数值算法/人工智能 (7)
- 通讯编程文档 (7)
- 可编程逻辑 (6)
- 通讯/手机编程 (6)
- VHDL/FPGA/Verilog (6)
- VC书籍 (6)
- 模拟电子 (5)
- Java书籍 (5)
- 单片机开发 (5)
- 电源技术 (4)
- 微处理器开发 (4)
- 系统设计方案 (4)
- 学术论文 (3)
- 教程资料 (3)
- 加密解密 (3)
- Delphi控件源码 (3)
- 嵌入式综合 (2)
- 无线通信 (2)
- 测试测量 (2)
- 数据结构 (2)
- 其他数据库 (2)
- 行业发展研究 (2)
- 电子书籍 (2)
- 文件格式 (2)
- Jsp/Servlet (2)
- Internet/网络编程 (2)
- 源码 (2)
- 论文 (2)
- PCB相关 (1)
- 传感与控制 (1)
- 工控技术 (1)
- 其他嵌入式/单片机内容 (1)
- Windows CE (1)
- Applet (1)
- 其他行业 (1)
- 邮电通讯系统 (1)
- SCSI/ASPI (1)
- 驱动编程 (1)
- 3G开发 (1)
- 书籍源码 (1)
- 金融证券系统 (1)
- 数据库系统 (1)
- 技术管理 (1)
- SQL Server (1)
- 编译器/解释器 (1)
- 软件工程 (1)
- JavaScript (1)
- 编辑器/阅读器 (1)
- 嵌入式/单片机编程 (1)
- 手机短信编程 (1)
- 源码/资料 (1)
- VIP专区 (1)
其他书籍 We address the problem of blind carrier frequency-offset (CFO) estimation in quadrature amplitude mo
We address the problem of blind carrier frequency-offset (CFO) estimation in quadrature amplitude modulation,
phase-shift keying, and pulse amplitude modulation
communications systems.We study the performance of a standard
CFO estimate, which consists of first raising the received signal to
the Mth ...
文件格式 In this article, we present an overview of methods for sequential simulation from posterior distribu
In this article, we present an overview of methods for sequential simulation from posterior distributions.
These methods are of particular interest in Bayesian filtering for discrete time dynamic models
that are typically nonlinear and non-Gaussian. A general importance sampling framework is develop ...
Linux/Unix编程 This library provides a C++ interface to XML files. It uses libxml 2 to access the XML files, and in
This library provides a C++ interface to XML files. It uses libxml 2 to access the XML files, and in order to
configure libxml++ you must have both libxml and pkg-config installed.
邮电通讯系统 radius协议源码÷The Radius Stack will connect to a Radius Server. This stack implementation is built upo
radius协议源码÷The Radius Stack will connect to a Radius Server. This stack
implementation is built upon the UdpStack which is available
in the radius{version}/util directory. A minimal set of VSAs (Vendor
Specific Attributes are supported by this stack). The Radius
Stack should be used as a base c ...
Java编程 We have a group of N items (represented by integers from 1 to N), and we know that there is some tot
We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparis ...
通讯编程文档 This article describes a sniffer for Windows. WinSniff is an application for capturing packets on th
This article describes a sniffer for Windows. WinSniff is an application for capturing packets on the network. It displays all the packets that are transmitted on the local network and gives detailed information about each header in the packet. In order to keep it simple, I am not dealing with appli ...
通讯编程文档 You imagine? Right, there s more than one possibility, this time I ll give you tree. One for your pr
You imagine? Right, there s more than one possibility, this time I ll give you tree. One for your private data, one for the common data in order to receive data from other applications like Excel, WinWord etc. and at last, I ll give you a handy-dandy class you can derive ANY MFC object from, to make ...
人工智能/神经网络 aDABOOST This package contains the following files: learner.jar - is a platform independent java
aDABOOST
This package contains the following files:
learner.jar - is a platform independent java package. In order to run it on windows/linux
open the command prompt/shell and type the command "java -jar learner.jar".
Make sure the java installation path is set in the system enviroment.
learner ...
人工智能/神经网络 OpenSVM was developped under Visual C++ 6.0 SP6, You can open the workspace file(*.dsw) in the ope
OpenSVM was developped under Visual C++ 6.0 SP6,
You can open the workspace file(*.dsw) in the opensvm-src folder.
The folder include the svm.h and svm.cpp which in the libsvm (Copyright (c) 2000-2007 Chih-Chung Chang and Chih-Jen Lin All rights reserved) in the opensvm-src\libsvm.
However, the f ...
数学计算 Using Gaussian elimination to solve linear equations. // In this version, we allow matrix of any si
Using Gaussian elimination to solve linear equations.
// In this version, we allow matrix of any size. This is done by treating
// the name of a 2-dimensional array as pointer to the beginning of the
// array. This makes use of the fact that arrays in C are stored in
// row-major order.