搜索结果
找到约 1,235 项符合
soft-input 的查询结果
加密解密 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 ...
matlab例程 ICP fit points in data to the points in model. Fit with respect to minimize the sum of square errors
ICP fit points in data to the points in model. Fit with respect to minimize the sum of square errors with the closest model points and data points.
Ordinary usage:
[R, T] = icp(model,data)
INPUT:
model - matrix with model points,
data - matrix with data points,
OUTPUT:
R - rotation matrix an ...
编译器/解释器 算符优先文法分析的c语言实现代码 需要输入词法分析的txt结果文件- The operator first grammar analysis c language realization code n
算符优先文法分析的c语言实现代码 需要输入词法分析的txt结果文件- The operator first grammar analysis c language realization code needs to input the lexical analysis the txt result document
书籍源码 最大流
最大流,The programs are designed to run under BSD UNIX.
All programs read from the standard input and write to the standard
output. Run "make" to compile the programs and generators.
File "list" lists the programs produced my "make".
Input files are in DIMACS format. See sample.input.
Java书籍 Core Java 2 Volume I - Fundamentals, Seventh Edition Completely revised and up-to-date coverage o
Core Java 2 Volume I - Fundamentals, Seventh Edition
Completely revised and up-to-date coverage of
Generic programming, restrictions and limitations, type bounds, wilcard types, and generic reflection
Swing GUI development, including input validation and other enhancements
Exception handling and ...
文件格式 Rao-Blackwellised Particle Filters (RBPFs) are a class of Particle Filters (PFs) that exploit condi
Rao-Blackwellised Particle Filters (RBPFs) are a class of Particle
Filters (PFs) that exploit conditional dependencies between
parts of the state to estimate. By doing so, RBPFs can
improve the estimation quality while also reducing the overall
computational load in comparison to original PFs. Howev ...
其他 学会对文件的记录锁定
学会对文件的记录锁定,及解锁。#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
int main()
{
int fd
int i
struct {
char name[20]
uint ID
int age
} myrec
fd =open("name", O_RDWR|O_CREAT, 0755)
if (fd == -1) return -1
printf("Input your name:") scanf("%s", myrec.name)
...
人工智能/神经网络 This directory contains code implementing the K-means algorithm. Source code may be found in KMEANS
This directory contains code implementing the K-means algorithm. Source code
may be found in KMEANS.CPP. Sample data isfound in KM2.DAT. The KMEANS
program accepts input consisting of vectors and calculates the given
number of cluster centers using the K-means algorithm. Output is
directed to the sc ...
驱动编程 This the second tutorial of the Writing Device Drivers series. There seems to be a lot of interest i
This the second tutorial of the Writing Device Drivers series. There seems to be a lot of interest in the topic, so this article will pick up where the first left off. The main focus of these articles will be to build up little by little the knowledge needed to write device drivers. In this article, ...
数据结构 This code implements the shortest path algorithm via the simple scheme and fibonacci heap data struc
This code implements the shortest path algorithm via the simple scheme and fibonacci heap data structure. It has 3 kinds of testing data input method : random input by computer, reading from the file, reading from the key board.