搜索结果
找到约 1,991 项符合
CGS-H 的查询结果
其他 编函数 float fun(double h)
编函数 float fun(double h),函数的功能是:对变量h中的值保留两位小数,并对第三位进行四舍五入(规定h中的值为正数)。
例如:若h 值为8.32433,则函数返回8.32 若h值为8.32533,则函数返回8.33。
Linux/Unix编程 //初始化 initscr() //获得屏幕尺寸 getmaxyx(stdscr, h, w) //画背景 for(i=0 i<h i++)
//初始化
initscr()
//获得屏幕尺寸
getmaxyx(stdscr, h, w)
//画背景
for(i=0 i<h i++)
for(j=0 j<w j++){
mvaddch(i, j, ACS_CKBOARD)
}
refresh()
//建立窗口
pad = newpad(80, 128)
for(i=0 i<80 i++){
char line[128]
sprintf(line, "This line in pad is numbered d ...
matlab例程 1. Consider the FIR system described by H(z) = 1/16(-1 + 9z--2 + 16z-3 + 9z--4 - z-6), and plot the
1. Consider the FIR system described by H(z) = 1/16(-1 + 9z--2 + 16z-3 + 9z--4 - z-6), and plot the pole-zero locations in the z-plane.
matlab例程 From the partial fraction expansion of H(z) we can find a, b
From the partial fraction expansion of H(z) we can find a, b
matlab例程 From the partial fraction expansion of H(z) we can find a, b
From the partial fraction expansion of H(z) we can find a, b
其他书籍 H.323.rar 功能的说明H.323.rar 功能的说明
H.323.rar 功能的说明H.323.rar 功能的说明
VC书籍 数学函数,所在函数库为math.h、stdlib.h、string.h、float.h
数学函数,所在函数库为math.h、stdlib.h、string.h、float.h
嵌入式/单片机编程 控制主板小喇叭播生日快乐歌,H标记高八度,L标记第八度,*n表n拍
控制主板小喇叭播生日快乐歌,H标记高八度,L标记第八度,*n表n拍
嵌入式/单片机编程 控制主板小喇叭播 世界末日,H标记高八度,L标记第八度,*n表n拍
控制主板小喇叭播 世界末日,H标记高八度,L标记第八度,*n表n拍
单片机开发 SD卡读写程序 1. sdconfig.h: 该文件为SD卡读写模块配置头文件
SD卡读写程序
1. sdconfig.h: 该文件为SD卡读写模块配置头文件,用户可根据实际硬件条件进行修改.
2. SD目录: SD卡读写模块的全部文件,一般不用修改.
3. 建议sdconfig.h文件不要放于SD目录中,因为SD目录中的文件一般无须修改,
而sdconfig.h通常会有改动. ...