-
半導(dǎo)體仿真工具Silvaco TCAD學(xué)習(xí)資料,中文,第1章 仿真準(zhǔn)備,第2章 二維工藝仿真,第3章 二維器件仿真,第4章 高級(jí)的特性,附錄A 材料系統(tǒng),附錄B 物理
標(biāo)簽:
器件仿真
上傳時(shí)間:
2016-03-24
上傳用戶:蟲蟲網(wǎng)....
-
實(shí)驗(yàn)源代碼
//Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("請(qǐng)輸入矩陣第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可傳遞閉包關(guān)系矩陣是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元關(guān)系的可傳遞閉包\n"); void warshall(int,int); int k , n; printf("請(qǐng)輸入矩陣的行數(shù) i: "); scanf("%d",&k);
四川大學(xué)實(shí)驗(yàn)報(bào)告 printf("請(qǐng)輸入矩陣的列數(shù) j: "); scanf("%d",&n); warshall(k,n); }
標(biāo)簽:
warshall
離散
實(shí)驗(yàn)
上傳時(shí)間:
2016-06-27
上傳用戶:梁雪文以
-
#include <iostream.h>
#include <string.h>
#include <iomanip.h>
#include "Stud.h"
Stud::Stud(){}
char *Stud::getno() //獲取學(xué)號(hào)
{
return no;
}
char *Stud::getname() //獲取姓名
{
return name;
}
char *Stud::getsex() //獲取性別
{
return sex;
}
char *Stud::getminzu() //獲取民族
{
return minzu;
}
char *Stud::getaddress() //獲取出生地
{
return address;
}
char *Stud::getbirth() //獲取出生年月
{
return birth;
}
int Stud::gettag() //獲取姓名
{
return tag;
}
void Stud::changeno(char n[]) //設(shè)置學(xué)號(hào)
{
strcpy(no,n);
}
void Stud::changename(char na[]) //設(shè)置姓名
{
strcpy(name,na);
}
void Stud::changesex(char s[]) //設(shè)置性別
{
strcpy(sex,s);
}
void Stud::changeminzu(char m[]) //設(shè)置民族
{
strcpy(minzu,m);
}
void Stud::changeaddress(char a[]) //設(shè)置出生地
{
strcpy(address,a);
}
void Stud::changebirth(char b[]) //設(shè)置出生年月
{
strcpy(birth,b);
}
void Stud::addstudent(char *rn,char *rna) //增加學(xué)生
{
strcpy(no,rn);
strcpy(name,rna);
}
void Stud::addstudent(char *rn,char *rna,char *rs,char *rm,char *ra,char *rb) //增加學(xué)生
{
tag=0;
strcpy(no,rn);
strcpy(name,rna);
strcpy(sex,rs);
strcpy(minzu,rm);
strcpy(address,ra);
strcpy(birth,rb);
}
void Stud::delstud() //設(shè)置刪除標(biāo)記
{
tag=1;
}
void Stud::disp() //輸出學(xué)生信息
{
cout<<setw(15)<<no<<setw(10)<<name<<setw(10)<<sex<<setw(10)<<minzu<<setw(10)<<address<<setw(10)<<birth<<endl;
}
void Stud::display() //輸出學(xué)生信息
{
cout<<setw(15)<<no<<setw(10)<<name;
}
標(biāo)簽:
學(xué)生
上傳時(shí)間:
2016-12-29
上傳用戶:767483511
-
1. 制作自己的 GUI用戶界面,實(shí)現(xiàn)圖像的傅里葉變換,并驗(yàn)證傅里葉變換的“平移不變性”、“旋轉(zhuǎn)一致性”;
2. 在GUI中,實(shí)現(xiàn)圖像的灰度拉伸,要求有靈活的(a,a’)點(diǎn)、(b,b’)點(diǎn)的選擇。
(提高題)圖像的灰度拉伸,用曲線控件完成。
標(biāo)簽:
數(shù)字圖像
處理技術(shù)
圖像
變換
上傳時(shí)間:
2017-05-10
上傳用戶:mouroutao
-
工資管理系統(tǒng)
分為個(gè)人工資查詢和工資管理兩塊
個(gè)人工資查詢的功能
1 查看工資單
2 打印工資單
3 修改密碼
工資管理 的 功能
1 按時(shí)間查看所工資單
2 添加用戶分為兩塊
a 單個(gè)的添加
b 用Database/namedaosfz.xls中直接導(dǎo)入
3 添加工資數(shù)據(jù)
a 單個(gè)的添加添加
b 由 Database/gzxq.xls,Database/qit.xls 中導(dǎo)入 ;工資單分主工資單(gzxq.xls)和其他費(fèi)用明細(xì)(qit.xls)
標(biāo)簽:
工資管理系統(tǒng)
上傳時(shí)間:
2018-10-29
上傳用戶:345835833
-
用于開發(fā)單片機(jī)的!!!超級(jí)單片機(jī)開發(fā)工具!!!
單片機(jī)開發(fā)過程中用到的多功能工具,包括熱敏電阻RT值--HEX數(shù)據(jù)轉(zhuǎn)換;3種LED編碼;色環(huán)電阻計(jì)算器;HEX/BIN 文件互相轉(zhuǎn)換;eeprom數(shù)據(jù)到C/ASM源碼轉(zhuǎn)換;CRC校驗(yàn)生成;串口調(diào)試,帶簡(jiǎn)單而實(shí)用的數(shù)據(jù)分析功能;串口/并口通訊監(jiān)視等功能. 用C++ Builder開發(fā),無須安裝,直接運(yùn)行,不對(duì)注冊(cè)表進(jìn)行操作。純綠色軟件。
詳細(xì)說明:
1、RT轉(zhuǎn)換:支持兩種電路,8/10位轉(zhuǎn)換精度,生成C/ASM源代碼格式的數(shù)據(jù),可手工輸入數(shù)據(jù)或從文件中讀取,輸入的數(shù)據(jù)可以保存到文件中。文件格式為逗號(hào)分隔符:
溫度,阻值
2、LED編碼信息:可以支持 7段/14段/16段 LED,支持 C/ASM 語法,可生成 4/8 位編碼,4位編碼主要用于某些 LCD 驅(qū)動(dòng)芯片。其中
7 段碼包括:0 -- F (Hex)
14 段碼包括:A -- Z, 0 -- F
16 段碼包括:A -- Z, 0 -- F
編碼方案可以保存供將來使用。
使用方法請(qǐng)點(diǎn)幫助。
3、色環(huán)電阻計(jì)算器功能。
4、HEX/BIN 文件相互轉(zhuǎn)換;
HEX/BIN 轉(zhuǎn)換成 C/ASM 源代碼格式,適用于eeprom數(shù)據(jù)等處理。
加入CRC校驗(yàn)碼生成功能。其中生成BIN文件時(shí)自動(dòng)生成校驗(yàn)碼,Get CRC 可生成任意文件的CRC碼。
另外還有相關(guān)知識(shí)、資料等。
5、串口調(diào)試具有
a. 基本通訊功能;
b. 數(shù)據(jù)分析功能,可自定義通訊數(shù)據(jù)中的變量,包括變量名、變量類型(長(zhǎng)度),顯示方式等;
內(nèi)存映射功能中自定義變量的起始地址即內(nèi)存起始地址,可自定義;
由map文件自動(dòng)讀取內(nèi)存變量(因條件所限,目前只支持由 ImageCraft C(ICC) 編譯器產(chǎn)生的map文件,歡迎提供其他編譯器的map文件樣本);
可自定義內(nèi)存塊的起始/結(jié)束標(biāo)志;
歷史數(shù)據(jù)保存功能;
c. 交互式通訊, 主發(fā)時(shí)可自定義多命令自動(dòng)循環(huán)發(fā)送;
從發(fā)時(shí)可定義接收到相應(yīng)命令后的應(yīng)答數(shù)據(jù)并自動(dòng)應(yīng)答;
6、串口監(jiān)視功能 目前具有本功能的多為共享軟件,本軟件中沒有任何限制。
實(shí)時(shí)監(jiān)視串口操作而不占用串口資源,可保存歷史數(shù)據(jù),2k下測(cè)試通過,98下使用捕捉時(shí)可能會(huì)有點(diǎn)問題,沒有進(jìn)行調(diào)試。
并口監(jiān)視應(yīng)該可以使用,沒有調(diào)試。
各種工具
標(biāo)簽:
單片機(jī)
上傳時(shí)間:
2019-05-27
上傳用戶:小愛心早餐
-
簡(jiǎn)單設(shè)計(jì)拔河游戲機(jī)包含六個(gè)模塊
1. 按鍵模塊:定義輸入輸出及按鍵模塊。
2. 按鍵消抖模塊:給每個(gè)按鍵兩個(gè)狀態(tài),保證按鍵產(chǎn)生的信號(hào)可以消除抖動(dòng)穩(wěn)定,給所定按鍵兩個(gè)狀態(tài),一個(gè)前狀態(tài),一個(gè)后狀態(tài),當(dāng)時(shí)鐘時(shí)鐘的脈沖沿來臨時(shí),將按鍵狀態(tài)賦值給前狀態(tài),設(shè)置定時(shí)器,當(dāng)計(jì)數(shù)計(jì)滿后,前狀態(tài)值賦給后狀態(tài),按鍵輸出值為前狀態(tài)和后狀態(tài)的取反的并。
3. 時(shí)鐘分頻模塊:將Basys3的100M系統(tǒng)時(shí)鐘分頻成為周期為10ms,100Hz頻率
4. 比較模塊:由分頻后的時(shí)鐘信號(hào)模塊控制按鍵信號(hào)模塊,之后進(jìn)入比較模塊,若A的脈沖數(shù)大于B,則Led向A代表方向移動(dòng),反之則向B代表方向移動(dòng),若相等則不動(dòng)。由Led的位置決定使能端的開啟與關(guān)閉,若移動(dòng)至A或B的頂端,則使能端控制Led無法再移動(dòng)。除此還要設(shè)計(jì)計(jì)數(shù)器并可以顯示在數(shù)碼管上記下獲勝者的盤數(shù)。
5. LED移動(dòng)模塊:在選定一定的時(shí)間周期內(nèi),檢測(cè)按鍵A與按鍵B的產(chǎn)生的脈沖個(gè)數(shù),進(jìn)行比較,若A的脈沖數(shù)量大于B,則Led向A方向移動(dòng),反之則向B方向移動(dòng),若相等則不動(dòng)。
6. 譯碼模塊:將得到的信號(hào)t轉(zhuǎn)化為L(zhǎng)ed的顯示,最后賦值給Led輸出端口,并且由數(shù)碼管顯示勝利的一方 。
標(biāo)簽:
verilog
上傳時(shí)間:
2020-05-19
上傳用戶:lzj007
-
The past decades have witnessed wide demand and applications for wireless commu-
nications in the human body area, that is, in the immediate environment around a
human body. These demands and applications especially focus on wireless transmis-
sion and networking of personal information for user identification, healthcare and
medical applications.
標(biāo)簽:
communications
modeling
channel
Body
area
上傳時(shí)間:
2020-05-26
上傳用戶:shancjb
-
LTE-Advanced becomes a truly global standard for 4G cellular communications.
Relay, as one of the key technologies of LTE-Advanced, can significantly extend
the coverage, and improve the system throughput. LTE-A standards and tech-
nologies were described in several recent books where the limited pages for relay
feature prevent the detailed explanations of the technology. In this book, we tried
to provide an in-depth description of LTE-A relay development. More specifically,
significant portions are spent on relay channel modeling and potential technologies
during the study item phase of the development, although some of those tech-
nologies, such as Type 2 cooperative relay, multi-hop relay, relay with backhaul of
carrier aggregation, were not standardized in Release 10 LTE.
標(biāo)簽:
LTE-Advanced
Technology
Relay
上傳時(shí)間:
2020-05-27
上傳用戶:shancjb
-
MIMO-OFDM is a key technology for next-generation cellular communications (3GPP-LTE,
Mobile WiMAX, IMT-Advanced) as well as wireless LAN (IEEE 802.11a, IEEE 802.11n),
wireless PAN (MB-OFDM), and broadcasting (DAB, DVB, DMB). This book provides a
comprehensive introduction to the basic theory and practice of wireless channel modeling,
OFDM, and MIMO, with MATLAB ? programs to simulate the underlying techniques on
MIMO-OFDMsystems.Thisbookisprimarilydesignedforengineersandresearcherswhoare
interested in learning various MIMO-OFDM techniques and applying them to wireless
communications.
標(biāo)簽:
Communications
MIMO-OFDM
Wireless
MATLAB
with
上傳時(shí)間:
2020-05-28
上傳用戶:shancjb