半導體仿真工具Silvaco TCAD學習資料,中文,第1章 仿真準備,第2章 二維工藝仿真,第3章 二維器件仿真,第4章 高級的特性,附錄A 材料系統,附錄B 物理
標簽: 器件仿真
上傳時間: 2016-03-24
上傳用戶:蟲蟲網....
實驗源代碼 //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("請輸入矩陣第%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("可傳遞閉包關系矩陣是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元關系的可傳遞閉包\n"); void warshall(int,int); int k , n; printf("請輸入矩陣的行數 i: "); scanf("%d",&k); 四川大學實驗報告 printf("請輸入矩陣的列數 j: "); scanf("%d",&n); warshall(k,n); }
上傳時間: 2016-06-27
上傳用戶:梁雪文以
#include <iostream.h> #include <string.h> #include <iomanip.h> #include "Stud.h" Stud::Stud(){} char *Stud::getno() //獲取學號 { 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[]) //設置學號 { strcpy(no,n); } void Stud::changename(char na[]) //設置姓名 { strcpy(name,na); } void Stud::changesex(char s[]) //設置性別 { strcpy(sex,s); } void Stud::changeminzu(char m[]) //設置民族 { strcpy(minzu,m); } void Stud::changeaddress(char a[]) //設置出生地 { strcpy(address,a); } void Stud::changebirth(char b[]) //設置出生年月 { strcpy(birth,b); } void Stud::addstudent(char *rn,char *rna) //增加學生 { strcpy(no,rn); strcpy(name,rna); } void Stud::addstudent(char *rn,char *rna,char *rs,char *rm,char *ra,char *rb) //增加學生 { tag=0; strcpy(no,rn); strcpy(name,rna); strcpy(sex,rs); strcpy(minzu,rm); strcpy(address,ra); strcpy(birth,rb); } void Stud::delstud() //設置刪除標記 { tag=1; } void Stud::disp() //輸出學生信息 { cout<<setw(15)<<no<<setw(10)<<name<<setw(10)<<sex<<setw(10)<<minzu<<setw(10)<<address<<setw(10)<<birth<<endl; } void Stud::display() //輸出學生信息 { cout<<setw(15)<<no<<setw(10)<<name; }
標簽: 學生
上傳時間: 2016-12-29
上傳用戶:767483511
1. 制作自己的 GUI用戶界面,實現圖像的傅里葉變換,并驗證傅里葉變換的“平移不變性”、“旋轉一致性”; 2. 在GUI中,實現圖像的灰度拉伸,要求有靈活的(a,a’)點、(b,b’)點的選擇。 (提高題)圖像的灰度拉伸,用曲線控件完成。
上傳時間: 2017-05-10
上傳用戶:mouroutao
工資管理系統 分為個人工資查詢和工資管理兩塊 個人工資查詢的功能 1 查看工資單 2 打印工資單 3 修改密碼 工資管理 的 功能 1 按時間查看所工資單 2 添加用戶分為兩塊 a 單個的添加 b 用Database/namedaosfz.xls中直接導入 3 添加工資數據 a 單個的添加添加 b 由 Database/gzxq.xls,Database/qit.xls 中導入 ;工資單分主工資單(gzxq.xls)和其他費用明細(qit.xls)
標簽: 工資管理系統
上傳時間: 2018-10-29
上傳用戶:345835833
用于開發單片機的!!!超級單片機開發工具!!! 單片機開發過程中用到的多功能工具,包括熱敏電阻RT值--HEX數據轉換;3種LED編碼;色環電阻計算器;HEX/BIN 文件互相轉換;eeprom數據到C/ASM源碼轉換;CRC校驗生成;串口調試,帶簡單而實用的數據分析功能;串口/并口通訊監視等功能. 用C++ Builder開發,無須安裝,直接運行,不對注冊表進行操作。純綠色軟件。 詳細說明: 1、RT轉換:支持兩種電路,8/10位轉換精度,生成C/ASM源代碼格式的數據,可手工輸入數據或從文件中讀取,輸入的數據可以保存到文件中。文件格式為逗號分隔符: 溫度,阻值 2、LED編碼信息:可以支持 7段/14段/16段 LED,支持 C/ASM 語法,可生成 4/8 位編碼,4位編碼主要用于某些 LCD 驅動芯片。其中 7 段碼包括:0 -- F (Hex) 14 段碼包括:A -- Z, 0 -- F 16 段碼包括:A -- Z, 0 -- F 編碼方案可以保存供將來使用。 使用方法請點幫助。 3、色環電阻計算器功能。 4、HEX/BIN 文件相互轉換; HEX/BIN 轉換成 C/ASM 源代碼格式,適用于eeprom數據等處理。 加入CRC校驗碼生成功能。其中生成BIN文件時自動生成校驗碼,Get CRC 可生成任意文件的CRC碼。 另外還有相關知識、資料等。 5、串口調試具有 a. 基本通訊功能; b. 數據分析功能,可自定義通訊數據中的變量,包括變量名、變量類型(長度),顯示方式等; 內存映射功能中自定義變量的起始地址即內存起始地址,可自定義; 由map文件自動讀取內存變量(因條件所限,目前只支持由 ImageCraft C(ICC) 編譯器產生的map文件,歡迎提供其他編譯器的map文件樣本); 可自定義內存塊的起始/結束標志; 歷史數據保存功能; c. 交互式通訊, 主發時可自定義多命令自動循環發送; 從發時可定義接收到相應命令后的應答數據并自動應答; 6、串口監視功能 目前具有本功能的多為共享軟件,本軟件中沒有任何限制。 實時監視串口操作而不占用串口資源,可保存歷史數據,2k下測試通過,98下使用捕捉時可能會有點問題,沒有進行調試。 并口監視應該可以使用,沒有調試。 各種工具
標簽: 單片機
上傳時間: 2019-05-27
上傳用戶:小愛心早餐
簡單設計拔河游戲機包含六個模塊 1. 按鍵模塊:定義輸入輸出及按鍵模塊。 2. 按鍵消抖模塊:給每個按鍵兩個狀態,保證按鍵產生的信號可以消除抖動穩定,給所定按鍵兩個狀態,一個前狀態,一個后狀態,當時鐘時鐘的脈沖沿來臨時,將按鍵狀態賦值給前狀態,設置定時器,當計數計滿后,前狀態值賦給后狀態,按鍵輸出值為前狀態和后狀態的取反的并。 3. 時鐘分頻模塊:將Basys3的100M系統時鐘分頻成為周期為10ms,100Hz頻率 4. 比較模塊:由分頻后的時鐘信號模塊控制按鍵信號模塊,之后進入比較模塊,若A的脈沖數大于B,則Led向A代表方向移動,反之則向B代表方向移動,若相等則不動。由Led的位置決定使能端的開啟與關閉,若移動至A或B的頂端,則使能端控制Led無法再移動。除此還要設計計數器并可以顯示在數碼管上記下獲勝者的盤數。 5. LED移動模塊:在選定一定的時間周期內,檢測按鍵A與按鍵B的產生的脈沖個數,進行比較,若A的脈沖數量大于B,則Led向A方向移動,反之則向B方向移動,若相等則不動。 6. 譯碼模塊:將得到的信號t轉化為Led的顯示,最后賦值給Led輸出端口,并且由數碼管顯示勝利的一方 。
標簽: verilog
上傳時間: 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.
標簽: communications modeling channel Body area
上傳時間: 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.
標簽: LTE-Advanced Technology Relay
上傳時間: 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.
標簽: Communications MIMO-OFDM Wireless MATLAB with
上傳時間: 2020-05-28
上傳用戶:shancjb