搜索结果
找到约 62 项符合
stored 的查询结果
按分类筛选
- 全部分类
- 数学计算 (5)
- 书籍 (5)
- 其他书籍 (4)
- 单片机编程 (3)
- 数值算法/人工智能 (3)
- Linux/Unix编程 (3)
- C/C++语言编程 (2)
- SQL Server (2)
- Java书籍 (2)
- 软件设计/软件工程 (2)
- 加密解密 (2)
- 单片机开发 (2)
- VC书籍 (2)
- 其他嵌入式/单片机内容 (2)
- 技术资料 (2)
- 电源技术 (1)
- Internet/网络编程 (1)
- Windows Mobile (1)
- 微处理器开发 (1)
- 人工智能/神经网络 (1)
- 电子书籍 (1)
- matlab例程 (1)
- 汇编语言 (1)
- Java编程 (1)
- 通讯/手机编程 (1)
- 系统设计方案 (1)
- 网络 (1)
- 手机短信编程 (1)
- Jsp/Servlet (1)
- 通讯编程文档 (1)
- STL (1)
- 其他数据库 (1)
- VHDL/FPGA/Verilog (1)
- 其他 (1)
- MySQL数据库 (1)
- 论文 (1)
SQL Server 这个存储过程是计算 MD5 值的
这个存储过程是计算 MD5 值的,可以用来进行密码认证加密等。
SQL Server 的扩展存储过程 (Extended Stored Procedure, 简称 XP) 是通过在 MSSQL 数据库注册封装在 .dll 里面的函数实现的,
而这个 .dll 应该按照 M$ 提供的规则, 并且要连接 MSSQL 的库文件。由于 C++ Builder 自带的 MSSQL 库文件 OPENDS60.LIB 比较旧,
本 ...
人工智能/神经网络 The Hopfield model is a distributed model of an associative memory. Neurons are pixels and can take
The Hopfield model is a distributed model of an associative memory. Neurons are pixels and can take the values of -1 (off) or +1 (on). The network has stored a certain number of pixel patterns. During a retrieval phase, the network is started with some initial configuration and the network dynamics ...
电子书籍 A dynamic-link library (DLL) contains one or more subprogram procedures (functions or subroutines)
A dynamic-link library (DLL) contains one or more subprogram procedures
(functions or subroutines) that are compiled, linked, and stored separately from
the applications using them. Because the functions or subroutines are separate
from the applications using them, they can be shared or replaced eas ...
Java书籍 These files contain all of the code listings in Java: The Complete Reference, J2SE 5 Edition
These files contain all of the code listings in
Java: The Complete Reference, J2SE 5 Edition
The source code is organized into files by chapter.
For example, the file Chap7.code contains the
programs shown in Chapter 7.
Within each chapter file, the listings are stored
in the same order as they ...
matlab例程 This code was used for making the practical measurements in section 2.3 of my thesis. This Matlab co
This code was used for making the practical measurements in section 2.3 of my thesis. This Matlab code allows an OFDM signal to be generated based on an input data file. The data can be random data, a grey scale image, a wave file, or any type of file. The generated OFDM signal is stored as a window ...
软件设计/软件工程 Web technology is not evolving in comfortable and incremental steps, but i s turbulent, erratic, and
Web technology is not evolving in comfortable and incremental steps, but i s turbulent, erratic, and often rather uncomfortable. It is estimated that the Internet, arguably the most important part of the new technological environment, has expanded by about 2000 % and that is doubling in size every ...
加密解密 What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the poss
What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the possible way is encrypting these files.Here a simple encryption technique is used(In VB - The same technique can be implemented in "c" also.) Program flow Explained * Open the File to be encrypted for Bin ...
其他书籍 Techniques for storing and processing data are at the heart of all programs. The term data structure
Techniques for storing and processing data are at the heart of all programs. The term data structure is used to describe the way data is stored, and the term algorithm is used to describe the way data is processed.
Linux/Unix编程 This a naive implementation of BOOTP/TFTPBOOT, the protocols to use to bootstrap a computer through
This a naive implementation of BOOTP/TFTPBOOT, the protocols
to use to bootstrap a computer through a TCP/IP network.
The goal was to design a small footprint implementation
to allow the code to be integrated into a monitor program
stored in a ROM/FLASH, the footprint is about 7 KBytes
for the test ...
数学计算 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.