搜索结果
找到约 2,450 项符合
USinG 的查询结果
按分类筛选
- 全部分类
- matlab例程 (235)
- 其他 (155)
- Java编程 (120)
- 其他书籍 (119)
- 单片机开发 (117)
- 其他嵌入式/单片机内容 (67)
- VHDL/FPGA/Verilog (64)
- 数学计算 (62)
- 单片机编程 (61)
- 嵌入式/单片机编程 (57)
- 人工智能/神经网络 (52)
- 通讯/手机编程 (51)
- 软件设计/软件工程 (50)
- Linux/Unix编程 (47)
- 微处理器开发 (45)
- VC书籍 (44)
- 书籍 (44)
- 汇编语言 (40)
- 数值算法/人工智能 (40)
- 通讯编程文档 (39)
- 系统设计方案 (39)
- 文章/文档 (38)
- 电子书籍 (37)
- 行业发展研究 (37)
- 书籍源码 (36)
- 压缩解压 (36)
- 技术资料 (36)
- 加密解密 (32)
- DSP编程 (31)
- 其他行业 (26)
- Java书籍 (26)
- 软件工程 (25)
- 驱动编程 (23)
- 编译器/解释器 (20)
- 可编程逻辑 (19)
- Delphi控件源码 (19)
- VIP专区 (18)
- 游戏 (17)
- Internet/网络编程 (16)
- 串口编程 (16)
- 模拟电子 (13)
- 3G开发 (13)
- USB编程 (12)
- 数据结构 (12)
- 教程资料 (11)
- SQL Server (11)
- 技术管理 (11)
- *行业应用 (11)
- 电源技术 (10)
- Windows Mobile (10)
- GPS编程 (10)
- Symbian (10)
- Jsp/Servlet (10)
- 网络 (9)
- 文件格式 (9)
- 并行计算 (9)
- 无线通信 (8)
- 嵌入式Linux (8)
- 操作系统开发 (8)
- 教育系统应用 (8)
- 数据库系统 (8)
- 源码 (8)
- 嵌入式综合 (7)
- 其他数据库 (7)
- J2ME (7)
- 手机短信编程 (7)
- 论文 (7)
- Applet (6)
- VxWorks (6)
- 技术书籍 (5)
- uCOS (5)
- Windows CE (5)
- JavaScript (5)
- 编辑器/阅读器 (4)
- CA认证 (4)
- 金融证券系统 (4)
- 能源行业(电力石油煤炭) (4)
- allegro (3)
- PCB相关 (3)
- 通信网络 (3)
- 传感与控制 (3)
- 家庭/个人应用 (3)
- 中间件编程 (3)
- Modem编程 (3)
- 交通/航空行业 (3)
- RFID编程 (3)
- STL (3)
- Delphi/CppBuilder (3)
- MySQL数据库 (3)
- 源码/资料 (3)
- Linux/uClinux/Unix编程 (3)
- 行业应用文档 (2)
- C/C++语言编程 (2)
- 测试测量 (2)
- 仿真技术 (2)
- OA系统 (2)
- 语音压缩 (2)
- 邮电通讯系统 (2)
- TAPI编程 (2)
- Oracle数据库 (2)
其他 This code was used to produce simulation results described in: Using Directional Antennas to Pre
This code was used to produce simulation results described in:
Using Directional Antennas to Prevent Wormhole Attacks
Lingxuan Hu and David Evans. Network and Distributed System Security
Symposium, San Diego, 5-6 February 2004.
Windows CE #ifdef _AFXDLL Enable3dControls() // Call this when using MFC in a shared DLL #else Enable3d
#ifdef _AFXDLL
Enable3dControls() // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic() // Call this when linking to MFC statically
#endif
CPreviewDialogDlg dlg
m_pMainWnd = &dlg
int nResponse = dlg.DoModal()
if (nResponse == IDOK)
{
// TODO: Place code here to ...
VC书籍 finacial application using excel add-in c C
finacial application using excel add-in c C
加密解密 AES Core Modules In this document I describe components designated to encoding and decoding using A
AES Core Modules In this document I describe components designated to encoding and decoding
using AES.
aes enc — parametrizable component which can encrypt input data, using
128, 192 and 256 bit key,
&#8226 aes dec — parametrizable component which can decrypt input data, using
128, 192 and 256 bit ...
邮电通讯系统 Using spectra to calculate strength of reflections and losses in passive cavities.The wavelength, re
Using spectra to calculate strength of reflections and losses in passive cavities.The wavelength, reflection spectrum and transmission spectrum should be in the first 3 columns of an Excel file, which is selected when the cavity.m Matlab file is run.
matlab例程 A simple (de)compression program using Run Length Encoding. Compression is done that easy: compr
A simple (de)compression program using Run Length Encoding.
Compression is done that easy:
compressedData = rle(originalData)
Decompression:
originalData = rle(compressedData)
matlab例程 Using Ant Colony Optimization Algorithm to solve Traveling Salesman Problem.对此方面的研究很有帮助
Using Ant Colony Optimization Algorithm to solve Traveling Salesman Problem.对此方面的研究很有帮助
单片机开发 AVR134 Real-Time Clock using the Asynchronous Timer
AVR134 Real-Time Clock using the Asynchronous Timer
matlab例程 Apply the standard QR-decomposition based LSL algorithm using angle-normalized error to predict/esti
Apply the standard QR-decomposition based LSL algorithm using angle-normalized error to predict/estimate complex-valued processes.
软件设计/软件工程 Dijkstra算法求最短路径(C#版) using System using System.Collections using System.Text namespace Greedy
Dijkstra算法求最短路径(C#版) using System
using System.Collections
using System.Text
namespace Greedy
{
class Marx
{
private int[] distance
private int row
private ArrayList ways = new ArrayList()
public Marx(int n,params int[] d)
{
this.row = n
distance = new int[row * row]
for ( ...