搜索结果
找到约 26,030 项符合
A母usb2.0 的查询结果
数值算法/人工智能 本程序能产生大部份实用随机数:产生一个[0,1]区间内均匀分布伪随机数、产生多个[0,1]区间内均匀分布伪随机数、产生任意[a,b]区间内一个均匀分布伪随机整数、产生任意[a,b]区间内均匀分布伪随机
本程序能产生大部份实用随机数:产生一个[0,1]区间内均匀分布伪随机数、产生多个[0,1]区间内均匀分布伪随机数、产生任意[a,b]区间内一个均匀分布伪随机整数、产生任意[a,b]区间内均匀分布伪随机整数序列、产生一个任意均值与方差的正态分布随机数、产生任意均值与方差的正态分布随机数序列 ...
通讯/手机编程 Spatial Channel Model for MIMO Simulations. A Ray based Simulator based on 3GPP TR 25.996 v.6.1.0
Spatial Channel Model for MIMO Simulations. A Ray based Simulator based on 3GPP TR 25.996 v.6.1.0
J2ME fantastic j2me user interface designer for midp2.0 cldcd 1.1. Works on many phones as a generic appl
fantastic j2me user interface designer for midp2.0 cldcd 1.1. Works on many phones as a generic application. This is not my own software but for those who don t know it already: check it out. There s a super cool sample application that shows you all of the amazing possibilities for your phone.
单片机开发 利用AT89S51单片机的P0端口的P0.0-P0.7连接到一个共阴数码管的a-h的笔段上
利用AT89S51单片机的P0端口的P0.0-P0.7连接到一个共阴数码管的a-h的笔段上,数码管的公共端接地。在数码管上循环显示0-9数字,时间间隔0.2秒。
教育系统应用 create a chart graph using vb 6.0
create a chart graph using vb 6.0
MySQL数据库 Java Application using EJB 3.0 for renting a car - Entities : Car, User, Renting Business Logic. Ne
Java Application using EJB 3.0 for renting a car - Entities : Car, User, Renting Business Logic. Needs Glassfish v2, mysql DB
其他数据库 A short implementation of a visual fox pro 6.0 code of a tram line , along with the stations through
A short implementation of a visual fox pro 6.0 code of a tram line , along with the stations through which it passes.
单片机开发 用数码管实现0-5伏的A/D转换功能
用数码管实现0-5伏的A/D转换功能,希望对大家有所帮助
数学计算 example of a 7 pulse multiple pulse width modulation with tow=0.8
example of a 7 pulse multiple pulse width modulation with tow=0.8
软件设计/软件工程 如何编写读/写一个字节的函数呢? 1. 读一个字节 uchar tmpread(void) //read a byte date 读一个字节 { uchar i,j,dat dat=0
如何编写读/写一个字节的函数呢?
1. 读一个字节
uchar tmpread(void) //read a byte date 读一个字节
{
uchar i,j,dat
dat=0
for(i=1 i<=8 i++)
{
j=tmpreadbit()
dat=(j<<7)|(dat>>1) //读出的数据最低位在最前面,这样刚好一个字节在DAT里
}
return(dat) //将一个字节数据返回
} ...