-
本文提出了加快發展之路
從理論設計,通過Matlab / Simulink環境
在定點算法對其行為模擬的
在FPGA或定制實現硅片。這個了
實現了netlist移植的Simulink系統
描述成的硬件描述語言[VHDL]。在這個例子中,這個
Simulink-to-VHDL轉換器被設計來使用
代碼來描述結構VHDL系統互連,
允許簡單的行為說明基本模塊。
結果VHDL bit-TRUE交付后代碼
比較定點Simulink仿真模型等效
模擬。
標簽:
Simulink
netlist
Matlab
FPGA
上傳時間:
2017-03-09
上傳用戶:duoshen1989
-
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 operation to manipulate this stream or bits array is so easy, jut read or change the bits state or make any Boolean operation on the whole bits array, like 鈥楢ND鈥? 鈥極R鈥? or 鈥榅OR鈥?
標簽:
structure
compacted
Booleans
provides
上傳時間:
2014-01-15
上傳用戶:壞天使kk
-
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 longer available.
標簽:
one-dimensional
primitive
represent
the
上傳時間:
2013-12-22
上傳用戶:zhichenglu
-
The angles in degrees of the two spatially propagating signals
Compute the array response vectors of the two signals
Compute the TRUE covariance matrix
標簽:
propagating
the
spatially
response
上傳時間:
2014-01-24
上傳用戶:1966640071
-
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.
This guide is geared towards posting a show at SharingTheGroove.org. The instructions contained within are for that site. Other sites hosting BT shows may have slightly different procedures for getting the torrent to them. However, torrent creation will be the same. While this guide is being written with audio concerts in mind, the same holds TRUE for the video section of The Groove.
標簽:
information
Perhaps
attempt
compile
上傳時間:
2013-12-19
上傳用戶:zsjzc
-
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終端控制定義*/
#include <errno.h> /*錯誤號定義*/
#define TRUE 1
#define FALSE 0
/***@brief 設置串口通信速率
*@
標簽:
include
stdlib
inclu
stdio
上傳時間:
2017-05-07
上傳用戶:ljt101007
-
void DockWidget::dock() {
if (!docked) {
KWin::setSystemTrayWindowFor(this->winId(), 0)
this->setFixedSize(24, 24)
this->show()
docked = TRUE
}
}
標簽:
setSystemTrayWindowFor
DockWidget
docked
winId
上傳時間:
2013-12-10
上傳用戶:417313137
-
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)
//設置覆蓋模式
form_driver(form, REQ_OVL_MODE)
標簽:
form
cols
rows
scale_form
上傳時間:
2017-06-12
上傳用戶:wff
-
//初始化
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 the cursor within the window.\n")
mvaddstr(17, 1, "Press q to quit.\n")
refresh()
wrefresh(win)
標簽:
EXIT_FAILURE
initcurs
initscr
perror
上傳時間:
2013-12-20
上傳用戶:FreeSky
-
//初始化
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_format(mymenu, 5, 1)
set_menu_mark(mymenu, "*")
//獲得菜單的行數很列數
scale_menu(mymenu, &mrows, &mcols)
//建立窗口和子窗口
win = newwin(mrows + 2, mcols + 2, 3, 30)
keypad(win, TRUE)
box(win, 0, 0)
subwin = derwin(win, 0, 0, 1, 1)
//設置菜單的窗口
set_menu_sub(mymenu, subwin)
//在子窗口上放置菜單
post_menu(mymenu)
refresh()
wrefresh(win)
標簽:
EXIT_FAILURE
initcurs
initscr
cbreak
上傳時間:
2013-11-29
上傳用戶:小眼睛LSL