搜索结果
找到约 379 项符合
alpha-win 的查询结果
VC书籍 用MFC实现串口编程, 本文详细介绍了串行通信的基本原理
用MFC实现串口编程, 本文详细介绍了串行通信的基本原理,以及在Windows NT、Win98环境下用MFC
实现串口(COM)通信的方法:使用ActiveX控件或Win API.并给出用Visual C++6.0
编写的相应MFC32位应用程序。关键词:串行通信、VC++6.0、ActiveX控件、Win
API、MFC32位应用程序、事件驱动、非阻塞通信、多线程. ...
其他书籍 This is the Reference Manual for the MySQL Database System. It documents MySQL up to Version 5.0.1-
This is the Reference Manual for the MySQL Database System. It documents MySQL up to
Version 5.0.1-alpha, but is also applicable for older versions of the MySQL software (such as
3.23 or 4.0-production) because functional changes are indicated with reference to a version
number.
JavaScript A simple object to store a color and perform Hex/RGB conversions. methods included ColorSetRGB -
A simple object to store a color and perform Hex/RGB conversions.
methods included
ColorSetRGB - ColorGetHex
RGBToHex(r, g, b)
hexToRGB(hex)
ColorBlend(colorFrom, colorTo)
ColorBlendGetColor(alpha)
ColorBlendToString()
网络 * This source demonstrates sending HTTP POST request to webserver from C++ * This uses sockets hen
* This source demonstrates sending HTTP POST request to webserver from C++
* This uses sockets hence can be compiled on Linux, UNIX, Win
Linux/Unix编程 //初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } //设置模式
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
//设置模式
cbreak()
noecho()
keypad(stdscr, TRUE)
//建立窗口
win = newwin(h, w, 3, 20)
box(win, 0, 0)
keypad(win, TRUE)
wmove(win, cury, curx)
mvaddstr(16, 1, "Press arrow keys to move ...
Linux/Unix编程 //初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } cbreak()
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
cbreak()
noecho()
keypad(stdscr, TRUE)
//建立菜单项
for(i=0 i<N_ITEMS i++){
items[i] = new_item(months[i], "")
}
//建立菜单
mymenu = new_menu(items)
//设置为5行单列的菜单
set_menu_fo ...
其他书籍 这个幻灯片讨论了adaboost的背景和现状;并且结合课程设计
这个幻灯片讨论了adaboost的背景和现状;并且结合课程设计,讨论了实际应用adaboost的情况,包括Alpha参数调整,避免overfitting等。
数值算法/人工智能 BP神经网络程序,C语言源代码 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "ma
BP神经网络程序,C语言源代码
如下:
#include "iostream.h"
#include "iomanip.h"
#include "stdlib.h"
#include "math.h"
#include "stdio.h"
#include "time.h"
#include "fstream.h"
#define N 120 //学习样本个数
#define IN 3 //输入层神经元数目
#define HN 2 //隐层神经元数目
#define ON 2 //输出层神经元数目
#def ...
数值算法/人工智能 program to solve a finite difference discretization of Helmholtz equation : (
program to solve a finite difference discretization of Helmholtz equation :
(d2/dx2)u + (d2/dy2)u - alpha u = f using Jacobi iterative method.
COMMENTS: OpenMP version 3: 1 PR outside the iteration loop, 4 Barriers
Directives are used in this c ...