搜索结果

找到约 138 项符合 true 的查询结果

系统设计方案   本文提出了加快发展之路   从理论设计,通过Matlab / Simulink环境   在定点算法对其行为模拟的   在FPGA或定制实现硅片。这个了   实现了netlist移植的Sim

  本文提出了加快发展之路   从理论设计,通过Matlab / Simulink环境   在定点算法对其行为模拟的   在FPGA或定制实现硅片。这个了   实现了netlist移植的Simulink系统   描述成的硬件描述语言[VHDL]。在这个例子中,这个   Simulink-to-VHDL转换器被设计来使用   代码来描述结构VHDL系统互连,   允许简单 ...
https://www.eeworm.com/dl/678/413336.html
下载: 128
查看: 1052

数据结构 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 ...
https://www.eeworm.com/dl/654/414286.html
下载: 201
查看: 1037

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 ...
https://www.eeworm.com/dl/656/427483.html
下载: 149
查看: 1055

多国语言处理 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
https://www.eeworm.com/dl/637/428613.html
下载: 100
查看: 1051

其他书籍 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 ...
https://www.eeworm.com/dl/542/433158.html
下载: 116
查看: 1058

通讯/手机编程 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终端控制定 ...
https://www.eeworm.com/dl/527/436772.html
下载: 127
查看: 1312

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 } }
https://www.eeworm.com/dl/619/451805.html
下载: 134
查看: 1023

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) //设置覆盖模式 ...
https://www.eeworm.com/dl/619/451810.html
下载: 106
查看: 1030

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 ...
https://www.eeworm.com/dl/619/451811.html
下载: 91
查看: 1018

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 ...
https://www.eeworm.com/dl/619/451812.html
下载: 73
查看: 1055