-
本文提出了加快發(fā)展之路
從理論設(shè)計(jì),通過(guò)Matlab / Simulink環(huán)境
在定點(diǎn)算法對(duì)其行為模擬的
在FPGA或定制實(shí)現(xiàn)硅片。這個(gè)了
實(shí)現(xiàn)了netlist移植的Simulink系統(tǒng)
描述成的硬件描述語(yǔ)言[VHDL]。在這個(gè)例子中,這個(gè)
Simulink-to-VHDL轉(zhuǎn)換器被設(shè)計(jì)來(lái)使用
代碼來(lái)描述結(jié)構(gòu)VHDL系統(tǒng)互連,
允許簡(jiǎn)單的行為說(shuō)明基本模塊。
結(jié)果VHDL bit-true交付后代碼
比較定點(diǎn)Simulink仿真模型等效
模擬。
標(biāo)簽:
Simulink
netlist
Matlab
FPGA
上傳時(shí)間:
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鈥?
標(biāo)簽:
structure
compacted
Booleans
provides
上傳時(shí)間:
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.
標(biāo)簽:
one-dimensional
primitive
represent
the
上傳時(shí)間:
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
標(biāo)簽:
propagating
the
spatially
response
上傳時(shí)間:
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.
標(biāo)簽:
information
Perhaps
attempt
compile
上傳時(shí)間:
2013-12-19
上傳用戶:zsjzc
-
include <stdio.h> /*標(biāo)準(zhǔn)輸入輸出定義*/
#include <stdlib.h> /*標(biāo)準(zhǔn)函數(shù)庫(kù)定義*/
#include <unistd.h> /*Unix標(biāo)準(zhǔn)函數(shù)定義*/
#include <sys/types.h> /**/
#include <sys/stat.h> /**/
#include <fcntl.h> /*文件控制定義*/
#include <termios.h> /*PPSIX終端控制定義*/
#include <errno.h> /*錯(cuò)誤號(hào)定義*/
#define TRUE 1
#define FALSE 0
/***@brief 設(shè)置串口通信速率
*@
標(biāo)簽:
include
stdlib
inclu
stdio
上傳時(shí)間:
2017-05-07
上傳用戶:ljt101007
-
void DockWidget::dock() {
if (!docked) {
KWin::setSystemTrayWindowFor(this->winId(), 0)
this->setFixedSize(24, 24)
this->show()
docked = true
}
}
標(biāo)簽:
setSystemTrayWindowFor
DockWidget
docked
winId
上傳時(shí)間:
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)
//設(shè)置覆蓋模式
form_driver(form, REQ_OVL_MODE)
標(biāo)簽:
form
cols
rows
scale_form
上傳時(shí)間:
2017-06-12
上傳用戶:wff
-
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
//設(shè)置模式
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)
標(biāo)簽:
EXIT_FAILURE
initcurs
initscr
perror
上傳時(shí)間:
2013-12-20
上傳用戶:FreeSky
-
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
cbreak()
noecho()
keypad(stdscr, TRUE)
//建立菜單項(xiàng)
for(i=0 i<N_ITEMS i++){
items[i] = new_item(months[i], "")
}
//建立菜單
mymenu = new_menu(items)
//設(shè)置為5行單列的菜單
set_menu_format(mymenu, 5, 1)
set_menu_mark(mymenu, "*")
//獲得菜單的行數(shù)很列數(shù)
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)
//設(shè)置菜單的窗口
set_menu_sub(mymenu, subwin)
//在子窗口上放置菜單
post_menu(mymenu)
refresh()
wrefresh(win)
標(biāo)簽:
EXIT_FAILURE
initcurs
initscr
cbreak
上傳時(shí)間:
2013-11-29
上傳用戶:小眼睛LSL