搜索结果
找到约 138 项符合
true 的查询结果
按分类筛选
- 全部分类
- 其他 (14)
- Delphi控件源码 (10)
- Java编程 (8)
- Linux/Unix编程 (7)
- 书籍 (6)
- 单片机编程 (5)
- 源码 (5)
- 技术资料 (5)
- 电源技术 (3)
- 文章/文档 (3)
- 多国语言处理 (3)
- 数据结构 (3)
- 其他书籍 (3)
- 编译器/解释器 (3)
- matlab例程 (3)
- 微处理器开发 (3)
- 软件 (3)
- 模拟电子 (2)
- 数据库系统 (2)
- 书籍源码 (2)
- Delphi/CppBuilder (2)
- 汇编语言 (2)
- VC书籍 (2)
- 软件设计/软件工程 (2)
- 中间件编程 (2)
- 其他行业 (2)
- 文件格式 (2)
- 网络 (2)
- 嵌入式/单片机编程 (2)
- Jsp/Servlet (2)
- 系统设计方案 (2)
- Java书籍 (2)
- 电子书籍 (2)
- 加密解密 (2)
- VIP专区 (2)
- 磁盘编程 (1)
- 单片机开发 (1)
- 人工智能/神经网络 (1)
- CA认证 (1)
- 数学计算 (1)
- Internet/网络编程 (1)
- FlashMX/Flex源码 (1)
- 驱动编程 (1)
- BREW编程 (1)
- Windows CE (1)
- GPS编程 (1)
- 操作系统开发 (1)
- 通讯/手机编程 (1)
- Ajax (1)
- 习题答案 (1)
系统设计方案 本文提出了加快发展之路 从理论设计,通过Matlab / Simulink环境 在定点算法对其行为模拟的 在FPGA或定制实现硅片。这个了 实现了netlist移植的Sim
本文提出了加快发展之路
从理论设计,通过Matlab / Simulink环境
在定点算法对其行为模拟的
在FPGA或定制实现硅片。这个了
实现了netlist移植的Simulink系统
描述成的硬件描述语言[VHDL]。在这个例子中,这个
Simulink-to-VHDL转换器被设计来使用
代码来描述结构VHDL系统互连,
允许简单 ...
数据结构 The Bit Array structure provides a compacted arrays of Booleans, with one bit for each Boolean value
The Bit Array structure provides a compacted arrays of Booleans, with one bit for each Boolean value. A 0 [1] bit corresponds to the Boolean value false [true], respectively. We can look at a stream of bytes as a stream of bits each byte contains 8 bits, so any n bytes hold n*8 bits. And the operat ...
Java书籍 Use a one-dimensional array of primitive type boolean to represent the seating chart of the plane.
Use a one-dimensional array of primitive type boolean to represent the seating chart of the
plane. Initialize all the elements of the array to false to indicate that all the seats are
empty. As each seat is assigned, set the corresponding elements of the array to true to
indicate that the seat is no ...
多国语言处理 The angles in degrees of the two spatially propagating signals Compute the array response vectors o
The angles in degrees of the two spatially propagating signals
Compute the array response vectors of the two signals
Compute the true covariance matrix
其他书籍 This guide is an attempt to compile a lot of that information in here and dummy it down. Perhaps it
This guide is an attempt to compile a lot of that information in here and dummy it down. Perhaps it s a fairly common show, perhaps not. It might have even been a show that you taped. Whatever the case, you want to share it with others bur aren t quite sure how. This guide should be your answer.
Thi ...
通讯/手机编程 include <stdio.h> /*标准输入输出定义*/ #include <stdlib.h> /*标准函数库定义*/ #inclu
include <stdio.h> /*标准输入输出定义*/
#include <stdlib.h> /*标准函数库定义*/
#include <unistd.h> /*Unix标准函数定义*/
#include <sys/types.h> /**/
#include <sys/stat.h> /**/
#include <fcntl.h> /*文件控制定义*/
#include <termios.h> /*PPSIX终端控制定 ...
Linux/Unix编程 void DockWidget::dock() { if (!docked) { KWin::setSystemTrayWindowFor(this->winId(), 0)
void DockWidget::dock() {
if (!docked) {
KWin::setSystemTrayWindowFor(this->winId(), 0)
this->setFixedSize(24, 24)
this->show()
docked = true
}
}
Linux/Unix编程 form = new_form(fields) scale_form(form, &rows, &cols) win = newwin(rows+3, cols+4, 3, 20)
form = new_form(fields)
scale_form(form, &rows, &cols)
win = newwin(rows+3, cols+4, 3, 20)
subwin = derwin(win, rows, cols, 1, 2)
set_form_sub(form, subwin)
box(win, 0, 0)
keypad(win, TRUE)
post_form(form)
refresh()
wrefresh(win)
wrefresh(subwin)
//设置覆盖模式
...
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 ...