-
usingMatlab
matlab 的应用指南,包括基础讲义,以及一些应用,适合各个程度的人。(matlab application guidelines, including the basis for lectures, as well as some applications, suitable for all levels of people.)
- 2009-07-13 09:11:49下载
- 积分:1
-
FaceDetection
This a very useful program from a book. It is mainly used for face-detecting.It also includes interface-program.
- 2009-01-19 09:28:45下载
- 积分:1
-
buffertest
this ring buffer sample.
- 2006-09-06 11:49:48下载
- 积分:1
-
yixingceshi
由于地球的上空有76颗依星,所以依星可以定位到地球的任意一个地方,该程序主要完成地理位置的定位(Because there are 76 above the Earth s Iridium, Iridium so you can navigate to any place of the Earth, which is mainly geographic location)
- 2015-03-23 15:26:34下载
- 积分:1
-
MATLABC-C
MATLABC数学函数库在C语言中的应用(MATLABC math library in C language)
- 2012-10-08 10:08:01下载
- 积分:1
-
gudingzichanguanli
说明: 是一个用于计算固定资产管理的程序 可用于一般要求不高的公司和部门(Is one for the calculation of fixed asset management program can be used for general corporate and department do not ask)
- 2010-03-31 18:24:18下载
- 积分:1
-
vcMfcUsbPort
vc6.0编写的usbhid通信的上位机。
venderID=0x0483,设备号 对应productID=0x5750
请在代码中更改(PC vc6.0 prepared usbhid communication.
venderID = 0x0483, device number corresponds productID = 0x5750
Change the code)
- 2021-01-12 13:58:48下载
- 积分:1
-
Operating_system_sixth_edition
操作系统中文版第六版,包含九章内容,全面介绍了操作系统的概念和执行流程,并附以实例加以说明(Chinese version of the sixth edition of the operating system, contains nine chapters content, a comprehensive introduction to the concept and implementation of the operating system processes, accompanied by examples to illustrate)
- 2009-09-21 19:49:58下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
matelabfangzhen
先进PID 控制及其MATLAB 仿真
网络上很少有这样的文档资料下载(Advanced PID Control and MATLAB Simulation of the network there has been little information download this document)
- 2009-04-21 15:26:21下载
- 积分:1