Microsoft PowerPoint - Slide07_AdvancedToolbox.ppt [相容模式]

Size: px
Start display at page:

Download "Microsoft PowerPoint - Slide07_AdvancedToolbox.ppt [相容模式]"

Transcription

1 套裝分析工具 MATLAB 進階工具箱 Fuzzy 系統工具箱 FIS / ANFIS toolbox 資料庫工具箱 Database Toolbox 統計工具箱 Statistics Toolbox 系統整合工具箱 JavaBuilder 開放原始碼工具 R software Python QGIS 1

2 MATLAB Fuzzy-related toolbox FIS Fuzzy Inference System Fuzzy Logic Toolbox software provides command-line functions and an app for creating Mamdani and Sugeno fuzzy systems ANFIS Adaptive Neuro-Fuzzy Inference System ANFIS is a FIS using neuro-adaptive learning methods in training neural networks. 其它 Open Source 應用軟體工具 Python: Scikit-Fuzzy Java: jfuzzy R CRAN: sets, frbs, anfis 2

3 Fuzzy Logic 模糊集合理論 (fuzzy set theory), 簡稱模糊理論 以量化方法處理模糊概念的學問 起源於 Lotfi A. Zadeh 教授於 1965 年發表在 Information and Control 的著名論文 "Fuzzy Sets" 模糊概念 : 這兩本書很類似 ; 他開車有點快 ; 這張照片拍得相當漂亮等 歸屬函數 (membership function, mf) 定義個體與集合的歸屬程度, 其值是 0 到 1 之間的任何值 當個體屬於集合的程度越大時, 其歸屬程度就越接近於 1, 反之則越接近於 0 利用歸屬程度 (degree) 取代 0 與 1 的二分法概念 利用歸屬函數定義輸入及輸出之特徵變數 (feature) 模糊規則 (fuzzy rules) If-Then control 假如輸入特徵為歸屬函數 x, 則輸出特徵為歸屬函數 y 3

4 Membership Function Display degree of feature variable by function X axis: feature range (distribution) Y axis: degree Degree between 0 and 1 Ex: Which are the weekend days? The multi-value for weekend-ness if degrees of the truth with fuzzy in-between values 4

5 Fuzzification 模糊化 : 將特徵變數 (Feature) 賦予數個歸屬函數成為模糊集 (Fuzzy Set) 5

6 Piece-wise linear functions Triangular: trimf(x,[a b c]) Ex: x = 0:0.1:10; y = trimf(x,[3 6 8]); Trapezoidal: trapmf(x,[a b c d]) Ex: x = 0:0.1:10; y = trapmf(x,[ ]); 6

7 Gaussian distribution function Gaussian: gaussmf(x,[sig c]) Ex: x = 0:0.1:10; y = gaussmf(x,[2 5]); Gaussian combination: gauss2mf(x,[sig1 c1 sig2 c2]) Ex: x=0:0.1:10; y=gauss2mf(x,[ ]); Generalized bell-shaped: gbellmf(x,params) Ex: x = 0:0.1:10; y = gbellmf(x,[2 4 6]); 7

8 Notes on gauss2mf: x = [0:0.1:10]'; y1 = gauss2mf(x,[ ]); y2 = gauss2mf(x,[ ]); y3 = gauss2mf(x,[ ]); y4 = gauss2mf(x,[ ]); y5 = gauss2mf(x,[ ]); plot(x,[y1 y2 y3 y4 y5]) 8

9 Sigmoid curves Sigmoidal: sigmf(x,[a c]) Ex: x = 0:0.1:10; y = sigmf(x,[2 4]); Diff. sigmoidal: dsigmf(x,[a1 c1 a2 c2]) Ex: x = 0:0.1:10; y = dsigmf(x,[ ]); Prod. Sigmoidal: psigmf(x,[a1 c1 a2 c2]) Ex: x = 0:0.1:10; y = psigmf(x,[ ]); 9

10 Spline-based curves Z-shaped: zmf(x,[a b]) Ex: x = 0:0.1:10; y = zmf(x,[3 7]); Pi-shaped: pimf(x,[a b c d]) Ex: x = 0:0.1:10; y = pimf(x,[ ]); S-shaped: smf(x,[a b]) Ex: x = 0:0.1:10; y = smf(x,[1 8]); 10

11 Defuzzification Fuzzy Rules (If-Then rules) Let input, output features x, y assigned by membership functions A, B, three formats can present the rule Verbose: If x is A then y is B Symbolic: If x == A then y = B Operator: (if x1>=a1 & x2<=a2) x3==a3=>y=b Matlab script rule = [ ] input1 is mf1 AND input2 is mf2 then output is mf3, weight = 1.5; AND: 1; OR: 2 Fuzzy operators AND: min(a,b); OR: max(a,b); NOT: (1-A) 11

12 Mamdani & Sugeno FIS Mamdani s fuzzy inference Output MF follows common Zadah s Fuzzy set function, i.e. triangular, trapezoidal, Guassian, sigmoidal, etc. Suitable for human input Takagi-Sugeno-Kang s fuzzy inference Output MF is a constant C, or a linear expression (i.e. C=ax1+bx2+c, where a, b, c are constants and C implicates the relationship of input MF x1, x2) Computationally efficient 12

13 Some MATLAB FIS Functions Function Description mfedit Open Membership Function Editor (GUI) ruleedit Open Rule Editor (GUI) ruleview Open Rule Viewer (GUI) parsrule Parse fuzzy rules (modify existing rule) newfis Create new Fuzzy Inference System (FIS) readfis Load FIS from file genfis1 Generate Sugeno FIS structure from data using grid partition mam2sug Transform Mamdani FIS into Sugeno FIS evalfis Perform fuzzy inference calculations showfis Display annotated FIS writefis Save FIS to file plotmf Plot all membership functions for given variable addvar Add variable to FIS addmf Add membership function to FIS addrule Add rule to FIS (rule list like [ ] is required) showrule Display FIS rules Notes: the membership functions can be referred in previous slides Ref. site: fuzzy inference systems.html 13

14 Arguments and Syntax Function mfedit ruleedit Syntax mfedit('a'); mfedit(a); mfedit; ruleedit('a'); ruleedit(a); ruleview ruleview(a); ruleview('a') ; fis2 = parsrule(fis,txtrulelist); fis2 = parsrule(fis,txtrulelist,ruleformat); parsrule fis2 = parsrule(fis,txtrulelist,ruleformat,lang); newfis newfis(fisname,fistype,andmethod,ormethod,impmethod,aggmethod,defuzzmethod); readfis genfis1 mam2sug evalfis showfis writefis plotmf addvar addmf addrule showrule fismat = readfis('filename'); fismat = readfis; genfis1(data); genfis1(data,nummfs,inmftype,outmftype); sugfis = mam2sug(mamfis); output= evalfis(input,fismat); output= evalfis(input,fismat, numpts); [output, IRR, ORR, ARR]= evalfis(input,fismat); [output, IRR, ORR, ARR]= evalfis(input,fismat,numpts) ; showfis(fismat); writefis(fismat); writefis(fismat,'filename'); writefis(fismat,'filename','dialog'); plotmf(fismat,vartype,varindex); a = addvar(a,'vartype','varname',varbounds) a = addmf(a,'vartype',varindex,'mfname','mftype',mfparams) a = addrule(a,rulelist); showrule(fis); showrule(fis,indexlist); showrule(fis,indexlist,format); showrule(fis,indexlist,'verbose',lang); 14

15 FIS Editor GUI 15

16 Example for manually creating FIS % 建立 tip_mfis 模糊規估系統檔, 2 個 input 和 1 個 output % input 和 output features 的範圍分別是 [0 10] 及 [0 25] tipper_fis=newfis('tip_mfis'); tipper_fis=addvar(tipper_fis,'input','service',[0 10]); tipper_fis=addvar(tipper_fis,'input','guality',[0 10]); tipper_fis=addvar(tipper_fis,'output','tip',[0 25]); % 設定 input1( 服務態度 ) 的模糊集, 含 3 個 triangular MF tipper_fis=addmf(tipper_fis,'input',1,'poor','trimf',[0 0 5]); tipper_fis=addmf(tipper_fis,'input',1,'normal','trimf',[0 5 10]); tipper_fis=addmf(tipper_fis,'input',1,'good','trimf',[ ]); % 設定 input2( 餐點品質 ) 的模糊集, 含 3 個 triangular MF tipper_fis=addmf(tipper_fis,'input',2,'poor','trimf',[0 0 5]); tipper_fis=addmf(tipper_fis,'input',2,'normal','trimf',[0 5 10]); tipper_fis=addmf(tipper_fis,'input',2,'good','trimf',[ ]); % 繪製兩個 input feature 的模糊集 plotmf(tipper_fis, input,1); plotmf(tipper_fis,'input',2); % 設定 output( 小費等級 ) 的模糊集, 分低中高三等的 3 個 triangular MF tipper_fis=addmf(tipper_fis,'output',1,'low','trimf',[0 0 13]); tipper_fis=addmf(tipper_fis,'output',1,'medium','trimf',[ ]); tipper_fis=addmf(tipper_fis,'output',1,'high','trimf',[ ]); plotmf(tipper_fis, output,1); % 繪製 output feature 模糊集 16

17 % 建立模糊準則 % [1](Verbose) If the service is poor OR the quality is poor, then the tip will be low % [2](Verbose) If the service is normal, then the tip will be medium % [3](Verbose) If the service is good OR the quality is good, then the tip will be high. % [1](Symbolic) If (service==poor) (quality==poor)=>(tip==low) % [2](Index) 2 0, 2(1):2 % [3] ([]) [ ] % 定義模糊準則代碼陣列 rule1 = [ ]; rule2 = [ ]; rule3 = [ ]; rules = [rule1; rule2; rule3]; % 加入模糊準則 tipper_fis = addrule(tipper_fis,rules); showrule(tipper_fis); % 檢視模糊準則 %showrule(tipper_fis,2,'symbolic'); showrule(tipper_fis,3,'indexed'); % 推估測試,ex: 當服務態度及餐點品質為 6.5 及 9.8 時, 給多少小費? evalfis([6.5;9.8], tipper_fis) evalfis([ ; ], tipper_fis) % 將建立好的 FIS 寫入檔案 writefis(tipper_fis,'tipper_mamdani'); 17

18 ANFIS Editor GUI 18

19 Training Process and Testing 訓練誤差與檢驗誤差 :RMSE 19

20 Database Toolbox Visual Query Builder - ODBC Create ODBC or JDBC connection ODBC (ex: Access) 在系統中建立好 ODBC 資源連線 (Ex: access_testdbx64 連至 testdb.accdb) 亦可使用 Define ODBC 選項建立 JDBC (ex: MySQL) 將 MySQL JDBC JAR 檔複製到 MATLAB 函式庫目錄, 完整路徑如下 :$matlabroot/java/jarext/ mysql-connector-java bin.jar 打開路徑資料檔, 位置在 $matlabroot/toolbox/ local/classpath.txt 增加前述之 jar 檔路徑至 classpath.txt 中 20

21 Start query builder 使用 ODBC 選擇 ODBC 設定, 輸入查詢指令 (Ex: SELECT * FROM dept) 定義與使用 JDBC 連線 輸入資料庫名稱 (Name) 驅動程式 (Driver) 與資料庫連線位置 (URL),Ex: Name: testdb Driver: com.mysql.jdbc.driver URL: jdbc:mysql://localhost:3306/ 所定義之 JDBC 連線參數可被存成 mat 檔 ( 如 jdbc_dbtest.mat 選擇 JDBC 連線時可看到資料庫名稱 (ex: testdb), 選取時會被要求輸入資料庫帳號密碼 輸入查詢資料語句並設定 Matlab 變數名稱 (Ex: dept_data, emp_data) 在變數區點選 Matlab 變數顯示資料 21

22 使用 ODBC 取得資料 設定 ODBC 選擇 ODBC 22

23 在 MATLAB 取出 Cell 格式資料 Cell 格式資料為表格要轉換後才能計算 23

24 使用 JDBC 取得資料 設定 JDBC 連線參數 24

25 使用 JDBC 取得資料 25

26 Database query steps 資料擷取步驟 建立連線 conn_jdbc = database(dbname, dbuser, dbpass, jdbcdriver, jdbcurl) 執行查詢 curs = exec(conn_jdbc,sqlquery) 取出資料 :curs = fetch(curs) 取出前 3 筆資料 :curs=fetch(curs,3) 顯示資料 :curs.data 指定第 2 欄資料 :curs.data(:,2) 指定第 2,4 欄資料 :curs.data(:,[2,4]) 指定第 2 到 4 欄資料 :curs.data(:,[2:4]) 26

27 參數說明 dbhost = 'localhost:3306';// 資料庫位置 dbuser = 'root';// 連線帳號 dbpass = 'root123';// 連線密碼 dbname='testdb';// 資料庫名稱 jdbcdriver = 'com.mysql.jdbc.driver'; // 驅動程式 jdbcurl = 'jdbc:mysql://localhost:3306/'; // 連線字串 sqlquery = 'select * from dept'; // 查詢語句, 跳脫字元為 ', ex: 'A%' 寫為 ''A%'' 27

28 資料增刪修參考 sqlinsert = 'insert into dept values(50, ''ENGINEERING'',''TAIPEI'''; sqlupdate = 'update dept set loc=''taichung'' where deptno=50' sqldelete = 'delete from dept where deptno=50' 以上 SQL 語句均可使用 exec 函數執行, 例如 curs = exec(conn_jdbc,sqlinsert) 關閉連線 : 關閉擷取資料 : close(curs); 關閉資料庫連線 : close(conn); 28

29 資料轉換 資料庫取得的資料為 cell 格式, 資料格式相同的欄位可以利用 cell2mat 或 cellstr 將資料轉成陣列 數字陣列 : a = cell2mat(curs.data(:,1)) 字串陣列 : b = cellstr(curs.data(:,[2,3])) 轉成數字格式後的 mat 資料型態可存在 workspace 中, 提供進一步處理分析 例如使用 ANFIS 從 workspace 中匯入資料進行訓練或測試 29

30 結合 ANFIS 和 DATABASE Toolbox 使用 Database Toolbox 存取資料部分 ( 註 : 資料庫中已存有 tainingdata 和 testingdata 兩個資料表 ) % Create database connection dbname = 'testdb'; dbuser = 'testuser'; dbpass = 'test123'; jdbcdriver = 'com.mysql.jdbc.driver'; jdbcurl = 'jdbc:mysql://localhost:3306/'; conn_jdbc = database(dbname, dbuser, dbpass, jdbcdriver, jdbcurl); % Retrieve training data from database sqlquery = 'select * from trainingdata'; curs = exec(conn_jdbc,sqlquery); curs = fetch(curs); % Convert cell-format data to matlab-format numeric data traindata = cell2mat(curs.data); % Convert cell-format data to matlab-format String data % traindata = cell2str(curs.data); 30

31 依前述步驟取得資料庫中的測試資料 % Retrieve testing data from database sqlquery = 'select * from testingdata'; curs = exec(conn_jdbc,sqlquery); curs = fetch(curs); testdata = cell2mat(curs.data); 使用 ANFIS Toolbox 進行訓練部分 % Use training data to generate an initial FIS nummfs = 3; mftype = 'gaussmf'; in_fis = genfis1(traindata,nummfs,mftype); % Use ANFIS to train data and return adapted FIS epoch_n = 200; dispopt = zeros(1,4); out_fis = anfis(traindata,in_fis,epoch_n,dispopt); % Output training error and testing error [out_fis,error,stepsize,chkfis,chkerr] = anfis(traindata,in_fis,epoch_n,dispopt,testdata); 31

32 Statistics Toolbox Dataset Sample dataset: hospital, cereal, etc. Create dataset by loading file: dataset('xlsfile','xxx.xls','sheet','yyy'); Loading yyy sheet of Excel file xxx.xls Add / delete new variables to dataset ds_name.var1 = 'x' Add var1 to dataset 'ds_name' and define 'x' as default value ds_name(:,n)=[] or ds_name.var1=[] Delete the nth columns of dataset ds_name 32

33 Sort dataset sortrows(dataset_name,{sort_cols}) ex: sortrows(hospital,{'sex','age'}) References: Sample Dataset Function list of statistics Dataset Process variables: create a dataset dataset class 33

34 開放原始碼之地理資訊架構 NGIS, Open GIS, Open Data, and Open Source GIS 國家地理資訊系統 : 政府基礎地理資料庫 開放式地理資訊系統 : 地理資訊網路服務標準 開放資料 : 原始資料公開 法律上授權 開放源碼地理資訊系統 : 免費自由的 GIS 軟體 Quantum GIS (QGIS) QGIS Tutorial Reference Site: 34

35 35

36 Spatial Database 提供空間資料庫的免費資料庫軟體 PostgreSQL, MySQL 與 PostGIS 空間計算函式相容 空間資料檔格式 :.shp,.dbf,.shx 等 36

37 R Language R 語言介紹 R 語法來自 Scheme, 是一種自由軟體函數程式語言, 主要用於統計分析 繪圖 資料探勘 R 本來是由紐西蘭奧克蘭大學的 Ross Ihaka 和 Robert Gentleman 開發 ( 也因此稱為 R), 現在由 R 開發核心團隊 負責開發 R 是基於 S 語言的一個 GNU 計劃專案, 通常用 S 語言編寫的代碼都可在 R 環境下執行 S 語言一種用於統計的程式語言, 年由貝爾實驗室的 John Chambers, Rick Becker, and Allan Wilks 共同研發 37

38 R 安裝與操作 CRAN CRAN 套件下載 R 官方網站 ( 進入 CRAN, 可下載針對 Unix Macintosh 或 Windows 的安裝軟體及原始碼 Base package R 平台中已具有約 25 個基本套件, 包含常用的敘述統計運算, 如 : 平均數 標準差 頻度分布圖 迴歸分析等等 CRAN mirror packages 提供數百種為特定資料分析目的所建置好的指令組合套件, 由核心團隊釋出或 R 的喜好者貢獻 38

39 Python Python 入門 Python 是一種物件導向 直譯式的電腦程式語言, 具有近二十年的發展歷史 包含功能完備的標準庫, 能輕鬆完成很多常見的任務 Python 虛擬機幾乎可在所有作業系統運行 例如 WinPython 亦可在行動碟上嵌入執行 支援命令式程式設計 物件導向程式設計 函數式編程 面向側面的程式設計 泛型編程多種編程範式 NumPy SciPy Matplotlib 可以讓 Python 程式設計師編寫科學計算程式 39

投影片 1

投影片 1 資料庫管理程式 ( 補充教材 -Part2) 使用 ADO.NET 連結資料庫 ( 自行撰寫程式碼 以實現新增 刪除 修改等功能 ) Private Sub InsertButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles InsertButton.Click ' 宣告相關的 Connection

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

基于ECO的UML模型驱动的数据库应用开发1.doc

基于ECO的UML模型驱动的数据库应用开发1.doc ECO UML () Object RDBMS Mapping.Net Framework Java C# RAD DataSetOleDbConnection DataGrod RAD Client/Server RAD RAD DataReader["Spell"].ToString() AObj.XXX bug sql UML OR Mapping RAD Lazy load round trip

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

目錄

目錄 資 訊 素 養 線 上 教 材 單 元 五 資 料 庫 概 論 及 Access 5.1 資 料 庫 概 論 5.1.1 為 什 麼 需 要 資 料 庫? 日 常 生 活 裡 我 們 常 常 需 要 記 錄 一 些 事 物, 以 便 有 朝 一 日 所 記 錄 的 事 物 能 夠 派 得 上 用 場 我 們 能 藉 由 記 錄 每 天 的 生 活 開 銷, 就 可 以 在 每 個 月 的 月 底 知

More information

PPBSalesDB.doc

PPBSalesDB.doc Pocket PowerBuilder SalesDB Pocket PowerBuilder PDA Pocket PowerBuilder Mobile Solution Pocket PowerBuilder Pocket PowerBuilder C:\Program Files\Sybase\Pocket PowerBuilder 1.0 %PPB% ASA 8.0.2 ASA 9 ASA

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

x 前言 Python Python ETL extract transform load Python Python / Python Python Python

x 前言 Python Python ETL extract transform load Python Python / Python Python Python 1 Python CSV Excel Python Python tab https:// github.com/cbrownley/foundations-for-analytics-with-python x 前言 Python Python ETL extract transform load Python Python / Python Python Python 前言 xi CSV Excel

More information

Microsoft PowerPoint - Lecture7II.ppt

Microsoft PowerPoint - Lecture7II.ppt Lecture 8II SUDOKU PUZZLE SUDOKU New Play Check 軟體實作與計算實驗 1 4x4 Sudoku row column 3 2 } 4 } block 1 4 軟體實作與計算實驗 2 Sudoku Puzzle Numbers in the puzzle belong {1,2,3,4} Constraints Each column must contain

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 9 [P.11] : Dev C++ [P.12] : http://c.feis.tw [P.13] [P.14] [P.15] [P.17] [P.23] Dev C++ [P.24] [P.27] [P.34] C / C++ [P.35] 10 C / C++ C C++ C C++ C++ C ( ) C++

More information

基于UML建模的管理管理信息系统项目案例导航——VB篇

基于UML建模的管理管理信息系统项目案例导航——VB篇 PowerBuilder 8.0 PowerBuilder 8.0 12 PowerBuilder 8.0 PowerScript PowerBuilder CIP PowerBuilder 8.0 /. 2004 21 ISBN 7-03-014600-X.P.. -,PowerBuilder 8.0 - -.TP311.56 CIP 2004 117494 / / 16 100717 http://www.sciencep.com

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

第 15 章 程 式 編 写 語 言 15.1 程 式 編 写 語 言 的 角 色 程 式 編 寫 語 言 是 程 式 編 寫 員 與 電 腦 溝 通 的 界 面 語 法 是 一 組 規 則 讓 程 式 編 寫 員 將 字 詞 集 合 起 來 電 腦 是 處 理 位 元 和 字 節 的 機 器, 與

第 15 章 程 式 編 写 語 言 15.1 程 式 編 写 語 言 的 角 色 程 式 編 寫 語 言 是 程 式 編 寫 員 與 電 腦 溝 通 的 界 面 語 法 是 一 組 規 則 讓 程 式 編 寫 員 將 字 詞 集 合 起 來 電 腦 是 處 理 位 元 和 字 節 的 機 器, 與 程 式 編 写 語 言 在 完 成 這 章 後, 你 將 能 夠 了 解 程 式 編 写 語 言 的 功 能 了 解 高 階 語 言 和 低 階 語 言 之 間 的 分 別 知 道 翻 譯 程 式 的 意 義 和 能 夠 把 翻 譯 程 式 分 類 為 : 匯 編 程 式 編 譯 程 式 和 解 譯 程 式 認 識 不 同 翻 譯 程 式 的 優 點 和 缺 點 程 式 是 指 揮 電 腦 的 指

More information

Python a p p l e b e a r c Fruit Animal a p p l e b e a r c 2-2

Python a p p l e b e a r c Fruit Animal a p p l e b e a r c 2-2 Chapter 02 變數與運算式 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.2 2.2.1 2.2.2 2.2.3 type 2.2.4 2.3 2.3.1 print 2.3.2 input 2.4 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 + 2.4.6 Python Python 2.1 2.1.1 a p p l e b e a r c 65438790

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

R D B M S O R D B M S R D B M S / O R D B M S R D B M S O R D B M S 4 O R D B M S R D B M 3. ORACLE Server O R A C L E U N I X Windows NT w w

R D B M S O R D B M S R D B M S / O R D B M S R D B M S O R D B M S 4 O R D B M S R D B M 3. ORACLE Server O R A C L E U N I X Windows NT w w 1 1.1 D B M S To w e r C D 1. 1 968 I B M I M S 2 0 70 Cullinet Software I D M S I M S C O D A S Y L 1971 I D M S containing hierarchy I M S I D M S I M S I B M I M S I D M S 2 2. 18 R D B M S O R D B

More information

晶体结构立体模型建构软件-Diamond的使用

晶体结构立体模型建构软件-Diamond的使用 -Diamond E-mail: wupingwei@mail.ouc.edu.cn -Diamond Diamond NaCl NaCl NaCl Fm-3m(225) a=5.64å Na:4a, Cl:4b 1 2 3 4 5 6 File New OK Diamond1 New Structure Crystal Structure with cell and Spacegroup Cell

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

TopTest_Adminstrator.doc

TopTest_Adminstrator.doc 壹 前 言... 3 貳 系 統 簡 介... 4 一 TKB multimedia Top-Test 系 統 架 構...4 1. 使 用 者 介 面 層 (Presentation tier)...5 2. 商 業 邏 輯 層 (business logic tier)...5 3. 資 料 服 務 層 (data services tier)...5 二 TKB Multimedia Top-Test

More information

untitled

untitled 1 Access 料 (1) 立 料 [] [] [ 料 ] 立 料 Access 料 (2) 料 [ 立 料 ] Access 料 (3) 料 料 料 料 料 料 欄 ADO.NET ADO.NET.NET Framework 類 來 料 料 料 料 料 Ex MSSQL Access Excel XML ADO.NET 連 .NET 料.NET 料 料來 類.NET Data Provider

More information

f2.eps

f2.eps 前 言, 目 录 产 品 概 况 1 SICAM PAS SICAM 电 力 自 动 化 系 统 配 置 和 使 用 说 明 配 置 2 操 作 3 实 时 数 据 4 人 机 界 面 5 SINAUT LSA 转 换 器 6 状 态 与 控 制 信 息 A 版 本 号 : 08.03.05 附 录, 索 引 安 全 标 识 由 于 对 设 备 的 特 殊 操 作 往 往 需 要 一 些 特 殊 的

More information

RunPC2_.doc

RunPC2_.doc PowerBuilder 8 (5) PowerBuilder Client/Server Jaguar Server Jaguar Server Connection Cache Thin Client Internet Connection Pooling EAServer Connection Cache Connection Cache Connection Cache Connection

More information

目錄 C ontents Chapter MTA Chapter Chapter

目錄 C ontents Chapter MTA Chapter Chapter 目錄 C ontents Chapter 01 1-1 MTA...1-2 1-2...1-3 1-3...1-5 1-4...1-10 Chapter 02 2-1...2-2 2-2...2-3 2-3...2-7 2-4...2-11...2-16 Chapter 03 3-1...3-2 3-2...3-8 3-3 views...3-16 3-4...3-24...3-33 Chapter

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

jdbc:hsqldb:hsql: jdbc:hsqldb:hsqls: jdbc:hsqldb:http: jdbc:hsqldb:https: //localhost //192.0.0.10:9500 / /dbserver.somedomain.com /an_alias /enrollme

jdbc:hsqldb:hsql: jdbc:hsqldb:hsqls: jdbc:hsqldb:http: jdbc:hsqldb:https: //localhost //192.0.0.10:9500 / /dbserver.somedomain.com /an_alias /enrollme sh -x path/to/hsqldb start > /tmp/hstart.log 2>&1 第 4 章 高 级 话 题 4.1 本 章 目 的 许 多 在 论 坛 或 邮 件 组 中 重 复 出 现 的 问 题 将 会 在 本 文 档 中 进 行 解 答 如 果 你 打 算 在 应 用 程 序 中 使 用 HSQLDB 的 话, 那 么 你 应 该 好 好 阅 读 一 下 本 文 章 本 章

More information

RUN_PC連載_12_.doc

RUN_PC連載_12_.doc PowerBuilder 8 (12) PowerBuilder 8.0 PowerBuilder PowerBuilder 8 PowerBuilder 8 / IDE PowerBuilder PowerBuilder 8.0 PowerBuilder PowerBuilder PowerBuilder PowerBuilder 8.0 PowerBuilder 6 PowerBuilder 7

More information

使用SQL Developer

使用SQL Developer 使 用 SQL Developer 达 成 的 目 标 / 方 案 1 创 建 一 个 新 的 数 据 库 连 接 ; 2 在 SQL Developer 中 查 看 数 据 库 对 象 的 信 息 修 改 数 据 ; 3 在 SQL Developer 中 创 建 表 ; 4 在 SQL Developer 中 创 建 索 引 ; 5 在 SQL Developer 中 创 建 函 数 ; 6 在

More information

59 1 CSpace 2 CSpace CSpace URL CSpace 1 CSpace URL 2 Lucene 3 ID 4 ID Web 1. 2 CSpace LireSolr 3 LireSolr 3 Web LireSolr ID

59 1 CSpace 2 CSpace CSpace URL CSpace 1 CSpace URL 2 Lucene 3 ID 4 ID Web 1. 2 CSpace LireSolr 3 LireSolr 3 Web LireSolr ID 58 2016. 14 * LireSolr LireSolr CEDD Ajax CSpace LireSolr CEDD Abstract In order to offer better image support services it is necessary to extend the image retrieval function of our institutional repository.

More information

幻灯片 1

幻灯片 1 沈 阳 工 业 大 学 2014 年 6 月 第 7 章 数 据 库 技 术 基 础 主 要 内 容 : 7.1 数 据 库 概 述 数 据 库 基 本 概 念 数 据 模 型 逻 辑 数 据 模 型 数 据 库 系 统 的 产 生 和 发 展 常 用 的 数 据 库 管 理 系 统 7.2 Access 2010 数 据 库 创 建 及 维 护 创 建 Access 2010 数 据 库 创 建

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

0SQL SQL SQL SQL SQL 3 SQL DBMS Oracle DBMS DBMS DBMS DBMS RDBMS R DBMS 2 DBMS RDBMS R SQL SQL SQL SQL SELECT au_fname,au_ lname FROM authors ORDER BY

0SQL SQL SQL SQL SQL 3 SQL DBMS Oracle DBMS DBMS DBMS DBMS RDBMS R DBMS 2 DBMS RDBMS R SQL SQL SQL SQL SELECT au_fname,au_ lname FROM authors ORDER BY 0 SQL SQL SELECT DISTINCT city, state FROM customers; SQL SQL DBMS SQL DBMS SQL 0-1 SQL SQL 0SQL SQL SQL SQL SQL 3 SQL DBMS Oracle DBMS DBMS DBMS DBMS RDBMS R DBMS 2 DBMS RDBMS R SQL SQL SQL SQL SELECT

More information

untitled

untitled MySQL DBMS under Win32 Editor: Jung Yi Lin, Database Lab, CS, NCTU, 2005/09/16 MySQL 料 理 MySQL 兩 Commercial License 利 GPL MySQL http://www.mysql.com Developer Zone http://www.mysql.com Download 連 連 MySQL

More information

主持人 本刊特约记者 春华 郑兰英 他们之间的信息是可以共享的 互操作的 这三个 嘉 宾 王丹 建设综合勘察研究设计院副院长 条件真正实施起来并不容易 因此现在我们的数字 孙建中 上海城市发展信息研究中心信 城市还在起步阶段 信息化没有止境 数字城市建 息技术部主任 设同样没有止境 随着技术不断发展

主持人 本刊特约记者 春华 郑兰英 他们之间的信息是可以共享的 互操作的 这三个 嘉 宾 王丹 建设综合勘察研究设计院副院长 条件真正实施起来并不容易 因此现在我们的数字 孙建中 上海城市发展信息研究中心信 城市还在起步阶段 信息化没有止境 数字城市建 息技术部主任 设同样没有止境 随着技术不断发展 期间中外数字城市建设现状与成果 推动相关数 随着北京 香港 上海 广州等大城市数字化建设 字城市建设技术 设备及产品在城市建设领域的应 的启动 许多省市已将数字城市作为实现区域信息 用 促进中外城市之间 政府与企业之间在 数 化的切入点和突破口 成功召开的首届及第二届数 字城市 领域的广泛合作 培育 数字城市 产业 字城市大会使得政府 相关企业及公众对数字城市 链 共同推进中外信息化技术的发展与进步

More information

D C 93 2

D C 93 2 D9223468 3C 93 2 Java Java -- Java UML Java API UML MVC Eclipse API JavadocUML Omendo PSPPersonal Software Programming [6] 56 8 2587 56% Java 1 epaper(2005 ) Java C C (function) C (reusability) eat(chess1,

More information

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

XML XML XMPP XML XML Schema XML XML,,, XML,

XML XML XMPP XML XML Schema XML XML,,, XML, XML ( ) XML XML XMPP XML XML Schema XML XML,,, XML, Abstract With the improvement of teaching infrastructure such as networks and computers in China, there is an increasing demand for network-based testing

More information

FileMaker 16 ODBC 和 JDBC 指南

FileMaker 16 ODBC 和 JDBC 指南 FileMaker 16 ODBC JDBC 2004-2017 FileMaker, Inc. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc. FileMaker WebDirect FileMaker Cloud FileMaker,

More information

自动化接口

自动化接口 基 于 文 件 的 数 据 交 换 的 注 意 事 项 1 SPI 2 COMOS Automation 操 作 手 册 通 用 Excel 导 入 3 通 过 OPC 客 户 端 的 过 程 可 视 化 4 SIMIT 5 GSD 6 05/2016 V 10.2 A5E37093378-AA 法 律 资 讯 警 告 提 示 系 统 为 了 您 的 人 身 安 全 以 及 避 免 财 产 损 失,

More information

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

untitled

untitled rxli@public.wh.hb.cn http://idc.hust.edu.cn/~rxli/ 2 3 ( ) (Distributed System) Integrated System () 4 5 6 System Integration 7 8 Integrated System 9 1.1 CIMS IDEF CSCW STEP MIS MRPII ERP CRM SCM MIS:

More information

Oracle Database 10g: SQL (OCE) 的第一堂課

Oracle Database 10g: SQL (OCE) 的第一堂課 商 用 資 料 庫 的 第 一 堂 課 中 華 大 學 資 訊 管 理 系 助 理 教 授 李 之 中 http://www.chu.edu.tw/~leecc 甲 骨 文 俱 樂 部 @Taiwan Facebook 社 團 https://www.facebook.com/groups/365923576787041/ 2014/09/15 問 題 一 大 三 了, 你 為 什 麼 還 在 這

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

目錄... ivv...vii Chapter DETECT

目錄... ivv...vii Chapter DETECT ... ivv...vii Chapter 1 1.1... 5 1.2... 6 1.3 DETECT... 11 1.3.1... 12 1.3.1.1...12 1.3.1.2...13 1.3.1.3...14 1.3.1.4...15 1.3.1.5...15 1.3.1.6...16 1.3.2 DETECT... 17 1.3.3... 19 1.3.4... 20... 22 Chapter

More information

三維空間之機械手臂虛擬實境模擬

三維空間之機械手臂虛擬實境模擬 VRML Model of 3-D Robot Arm VRML Model of 3-D Robot Arm MATLAB VRML MATLAB Simulink i MATLAB Simulink V-Realm Build Joystick ii Abstract The major purpose of this thesis presents the procedure of VRML

More information

Microsoft PowerPoint - L17_Inheritance_v4.pptx

Microsoft PowerPoint - L17_Inheritance_v4.pptx C++ Programming Lecture 17 Wei Liu ( 刘 威 ) Dept. of Electronics and Information Eng. Huazhong University of Science and Technology May. 2015 Lecture 17 Chapter 20. Object-Oriented Programming: Inheritance

More information

(Geographic data or geodata ) 30 (Buelher, K and L. Mckee1996) (Open GIS Consortium OGC) OGC GIS Open GIS OGC (Geography Markup Langu

(Geographic data or geodata ) 30 (Buelher, K and L. Mckee1996) (Open GIS Consortium OGC) OGC GIS Open GIS OGC (Geography Markup Langu 2004 1 1 2 3 4 (Open GIS Consortium, OGC) (Geography Markup Lang uage, GML GML) GIS GML GIS GML GML GML GML TGML(Taipei-GML) application schema TGML TGML TGML 1 2 3 4 1 2004 1. (Geographic data or geodata

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

Microsoft Word - 3D手册2.doc

Microsoft Word - 3D手册2.doc 第 一 章 BLOCK 前 处 理 本 章 纲 要 : 1. BLOCK 前 处 理 1.1. 创 建 新 作 业 1.2. 设 定 模 拟 控 制 参 数 1.3. 输 入 对 象 数 据 1.4. 视 图 操 作 1.5. 选 择 点 1.6. 其 他 显 示 窗 口 图 标 钮 1.7. 保 存 作 业 1.8. 退 出 DEFORMTM3D 1 1. BLOCK 前 处 理 1.1. 创 建

More information

untitled

untitled 1 Access 料 (1) 立 料 [] [] [ 料 ] 立 料 Access 料 (2) 料 [ 立 料 ] Access 料 (3) 料 料 料 料 料 料 欄 ADO.NET ADO.NET.NET Framework 類 來 料 料 料 料 料 Ex MSSQL Access Excel XML ADO.NET 連 .NET 料.NET 料 料來 類.NET Data Provider

More information

1 背 景 介 紹 許 多 應 用 科 學 牽 涉 到 從 資 料 (data) 中 分 析 出 所 需 要 ( 含 ) 的 資 訊 (information) 希 望 從 已 知 的 資 料 中 瞭 解 問 題 的 本 質, 進 而 能 控 制 或 做 出 預 測 這 些 資 料 通 常 有 兩

1 背 景 介 紹 許 多 應 用 科 學 牽 涉 到 從 資 料 (data) 中 分 析 出 所 需 要 ( 含 ) 的 資 訊 (information) 希 望 從 已 知 的 資 料 中 瞭 解 問 題 的 本 質, 進 而 能 控 制 或 做 出 預 測 這 些 資 料 通 常 有 兩 群 組 分 類 線 性 迴 歸 與 最 小 平 方 法 last modified July 22, 2008 本 單 元 討 論 Supervised Learning 中 屬 於 類 別 ( 即 輸 出 變 數 Y 是 類 別 型 的 資 料 ) 資 料 的 群 組 分 辨, 並 且 著 重 在 最 簡 單 的 兩 群 組 (two classes) 資 料 判 別 透 過 幾 個 簡 單 典

More information

Spyder Anaconda Spyder Python Spyder Python Spyder Spyder Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Sp

Spyder Anaconda Spyder Python Spyder Python Spyder Spyder Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Sp 01 1.6 Spyder Anaconda Spyder Python Spyder Python Spyder Spyder 1.6.1 Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Spyder Python File

More information

iml88-0v C / 8W T Tube EVM - pplication Notes. IC Description The iml88 is a Three Terminal Current Controller (TTCC) for regulating the current flowi

iml88-0v C / 8W T Tube EVM - pplication Notes. IC Description The iml88 is a Three Terminal Current Controller (TTCC) for regulating the current flowi iml88-0v C / 8W T Tube EVM - pplication Notes iml88 0V C 8W T Tube EVM pplication Notes Table of Content. IC Description.... Features.... Package and Pin Diagrams.... pplication Circuit.... PCB Layout

More information

软件概述

软件概述 Cobra DocGuard BEIJING E-SAFENET SCIENCE & TECHNOLOGY CO.,LTD. 2003 3 20 35 1002 010-82332490 http://www.esafenet.com Cobra DocGuard White Book 1 1....4 1.1...4 1.2 CDG...4 1.3 CDG...4 1.4 CDG...5 1.5

More information

USING MAYA ANIMATION Keyset set Maya sets partitions MEL MEL copykey cutkey pastekey scalekey snapkey keytangent bakeresults MEL Command Reference Edi

USING MAYA ANIMATION Keyset set Maya sets partitions MEL MEL copykey cutkey pastekey scalekey snapkey keytangent bakeresults MEL Command Reference Edi 9 61 62 65 67 69 69 71 74 76 Maya Edit > Keys > Paste Keys Maya 61 USING MAYA ANIMATION Keyset set Maya sets partitions MEL MEL copykey cutkey pastekey scalekey snapkey keytangent bakeresults MEL Command

More information

ebook111-4

ebook111-4 Flash 4 Flash 4 F l a s h 5 Flash 4 Flash Flash 4 Flash 4 Flash 4 4.1 Flash 4 Flash 4 Flash 4 Flash Flash 4 Flash 4 4.2 Flash 4 Flash 4 A Flash 4 S h i f t F i l e P r e f e r e n c e s > > Flash 4 Flash

More information

The golden pins of the PCI card can be oxidized after months or years

The golden pins of the PCI card can be oxidized after months or years Q. 如何在 LabWindows/CVI 編譯 DAQ Card 程式? A: 請參考至下列步驟 : 步驟 1: 安裝驅動程式 1. 安裝 UniDAQ 驅動程式 UniDAQ 驅動程式下載位置 : CD:\NAPDOS\PCI\UniDAQ\DLL\Driver\ ftp://ftp.icpdas.com/pub/cd/iocard/pci/napdos/pci/unidaq/dll/driver/

More information

WinMDI 28

WinMDI 28 WinMDI WinMDI 2 Region Gate Marker Quadrant Excel FACScan IBM-PC MO WinMDI WinMDI IBM-PC Dr. Joseph Trotter the Scripps Research Institute WinMDI HP PC WinMDI WinMDI PC MS WORD, PowerPoint, Excel, LOTUS

More information

RUN_PC連載_8_.doc

RUN_PC連載_8_.doc PowerBuilder 8 (8) Web DataWindow ( ) DataWindow Web DataWindow Web DataWindow Web DataWindow PowerDynamo Web DataWindow / Web DataWindow Web DataWindow Wizard Web DataWindow Web DataWindow DataWindow

More information

1 目 錄 1. 簡 介... 2 2. 一 般 甄 試 程 序... 2 3. 第 一 階 段 的 準 備... 5 4. 第 二 階 段 的 準 備... 9 5. 每 間 學 校 的 面 試 方 式... 11 6. 各 程 序 我 的 做 法 心 得 及 筆 記... 13 7. 結 論..

1 目 錄 1. 簡 介... 2 2. 一 般 甄 試 程 序... 2 3. 第 一 階 段 的 準 備... 5 4. 第 二 階 段 的 準 備... 9 5. 每 間 學 校 的 面 試 方 式... 11 6. 各 程 序 我 的 做 法 心 得 及 筆 記... 13 7. 結 論.. 如 何 準 備 研 究 所 甄 試 劉 富 翃 1 目 錄 1. 簡 介... 2 2. 一 般 甄 試 程 序... 2 3. 第 一 階 段 的 準 備... 5 4. 第 二 階 段 的 準 備... 9 5. 每 間 學 校 的 面 試 方 式... 11 6. 各 程 序 我 的 做 法 心 得 及 筆 記... 13 7. 結 論... 20 8. 附 錄 8.1 推 甄 書 面 資 料...

More information

XXX专业本科人才培养方案

XXX专业本科人才培养方案 计 算 机 科 学 与 技 术 专 业 本 科 人 才 培 养 方 案 (Computer Science and Technology 080901) 一 培 养 目 标 本 专 业 培 养 德 智 体 美 全 面 发 展, 具 有 良 好 的 科 学 与 人 文 素 养, 熟 悉 经 济 管 理 法 律 等 相 关 基 础 知 识, 系 统 地 掌 握 计 算 机 硬 件 软 件 方 面 的 基

More information

Microsoft Word - p11.doc

Microsoft Word - p11.doc () 11-1 ()Classification Analysis( ) m() p.d.f prior (decision) (loss function) Bayes Risk for any decision d( ) posterior risk posterior risk Posterior prob. j (uniform prior) where Mahalanobis Distance(M-distance)

More information

MATLAB 1

MATLAB 1 MATLAB 1 MATLAB 2 MATLAB PCI-1711 / PCI-1712 MATLAB PCI-1711 / PCI-1712 MATLAB The Mathworks......1 1...........2 2.......3 3................4 4. DAQ...............5 4.1. DAQ......5 4.2. DAQ......6 5.

More information

untitled

untitled -JAVA 1. Java IDC 20 20% 5 2005 42.5 JAVA IDC JAVA 60% 70% JAVA 3 5 10 JAVA JAVA JAVA J2EE J2SE J2ME 70% JAVA JAVA 20 1 51 2. JAVA SUN JAVA J2EE J2EE 3. 1. CSTP CSTP 2 51 2. 3. CSTP IT CSTP IT IT CSTP

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

導讀 ASP.NET HTML ASP 第一篇 基礎篇第 1 章 認識 ASP.NET ASP.NET ASP.NET ASP.NET ASP.NET 第 2 章 認識 Visual Studio 20 開發環境 Visual Studio 20 Visual Studio 20 第二篇 C# 程式

導讀 ASP.NET HTML ASP 第一篇 基礎篇第 1 章 認識 ASP.NET ASP.NET ASP.NET ASP.NET ASP.NET 第 2 章 認識 Visual Studio 20 開發環境 Visual Studio 20 Visual Studio 20 第二篇 C# 程式 導讀 ASP.NET HTML ASP 第一篇 基礎篇第 1 章 認識 ASP.NET ASP.NET ASP.NET ASP.NET ASP.NET 第 2 章 認識 Visual Studio 20 開發環境 Visual Studio 20 Visual Studio 20 第二篇 C# 程式語言篇第 3 章 C# 程式語言基礎 C# C# 3.0 var 第 4 章 基本資料處理 C# x

More information

學 科 100% ( 為 單 複 選 題, 每 題 2.5 分, 共 100 分 ) 1. 請 參 閱 附 圖 作 答 : (A) 選 項 A (B) 選 項 B (C) 選 項 C (D) 選 項 D Ans:D 2. 下 列 對 於 資 料 庫 正 規 化 (Normalization) 的 敘

學 科 100% ( 為 單 複 選 題, 每 題 2.5 分, 共 100 分 ) 1. 請 參 閱 附 圖 作 答 : (A) 選 項 A (B) 選 項 B (C) 選 項 C (D) 選 項 D Ans:D 2. 下 列 對 於 資 料 庫 正 規 化 (Normalization) 的 敘 ITE 資 訊 專 業 人 員 鑑 定 資 料 庫 系 統 開 發 與 設 計 實 務 試 卷 編 號 :IDS101 注 意 事 項 一 本 測 驗 為 單 面 印 刷 試 題, 共 計 十 三 頁 第 二 至 十 三 頁 為 四 十 道 學 科 試 題, 測 驗 時 間 90 分 鐘 : 每 題 2.5 分, 總 測 驗 時 間 為 90 分 鐘 二 執 行 CSF 測 驗 系 統 -Client

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Microsoft Word - ch04三校.doc

Microsoft Word - ch04三校.doc 4-1 4-1-1 (Object) (State) (Behavior) ( ) ( ) ( method) ( properties) ( functions) 4-2 4-1-2 (Message) ( ) ( ) ( ) A B A ( ) ( ) ( YourCar) ( changegear) ( lowergear) 4-1-3 (Class) (Blueprint) 4-3 changegear

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

概述

概述 OPC Version 1.6 build 0910 KOSRDK Knight OPC Server Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOS_Init...5 2.2.2 KOS_InitB...5 2.2.3

More information

Fuzzy GP

Fuzzy GP : 林 理論 數 論 1 率 2 類,, 金流量 金 利 數 益,, 3 不 異 (Multi- Valued) (Single-Valued) 數 數 數 (Local Optimum) (Global Optimum) 4 (Multi-valued) (Non-linear) (Self-learning) 5 (Genetic Programming, GP) GP 1. 亂數 2. (individuals)

More information

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( Nvidia nforce430)

More information

08_729.dvi

08_729.dvi 2007 55 1 113 124 c 2007 1 1 2,3 Jung Jin Lee 4 2006 8 2 2007 3 2 Jasp Jasp 1., 2005 Chang, 2006 1 1 769 2193 1314 1 2 106 8569 4 6 7 3 106 8569 4 6 7 4 Department of Statistics, Soong Sil University,

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

untitled

untitled 51testing www.51testing.com UML Java Unified Modeling Language UML 1 UML 2 UML UML UML UML UML UML use case Java 1 2 3 4( 5 6 7 UNIX Windows OS/2 ( GUI ) 8 51testing www.51testing.com use caseactor ()

More information

Microsoft Word - InoTouch Editor编程软件手册2012.2.10.doc

Microsoft Word - InoTouch Editor编程软件手册2012.2.10.doc 目 录 第 一 章 关 于 InoTouch Editor 编 程 软 件 的 安 装... - 6-1.1 InoTouch 系 列 HMI 和 InoTouch Editor 软 件 的 简 介... - 6-1.2 安 装 InoTouch Editor 编 程 软 件... - 10-1.3 系 统 连 接 图... - 12-1.4 InoTouch 系 列 人 机 界 面 的 系 统 设

More information

untitled

untitled OO 1 SQL Server 2000 2 SQL Server 2000 3 SQL Server 2000 DDL 1 2 3 DML 1 INSERT 2 DELETE 3 UPDATE SELECT DCL 1 SQL Server 2 3 GRANT REVOKE 1 2 1 2 3 4 5 6 1 SQL Server 2000 SQL Server SQL / Microsoft SQL

More information

Business Objects 5.1 Windows BusinessObjects 1

Business Objects 5.1 Windows BusinessObjects 1 Business Objects 5.1 Windows BusinessObjects 1 BusinessObjects 2 BusinessObjects BusinessObjects BusinessObjects Windows95/98/NT BusinessObjects Windows BusinessObjects BusinessObjects BusinessObjects

More information

FileMaker 15 ODBC 和 JDBC 指南

FileMaker 15 ODBC 和 JDBC 指南 FileMaker 15 ODBC JDBC 2004-2016 FileMaker, Inc. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc. / FileMaker WebDirect FileMaker, Inc. FileMaker

More information

管道建模基础.ppt

管道建模基础.ppt AVEVA 2004.11.4 Pdms (database hierarchy) (PipeworkModelling) PIPE WORLD BRANCH PDMS FLANGE,Elbow.. SITE Pipe routing is probably the activity that consumes most time on any large project and it is also

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

Microsoft PowerPoint - Ch5 The Bipolar Junction Transistor

Microsoft PowerPoint - Ch5 The Bipolar Junction Transistor O2005: Electronics The Bipolar Junction Transistor (BJT) 張大中 中央大學通訊工程系 dcchang@ce.ncu.edu.tw 中央大學通訊系張大中 Electronics, Neamen 3th Ed. 1 Bipolar Transistor Structures N P 17 10 N D 19 10 N D 15 10 中央大學通訊系張大中

More information

HC20131_2010

HC20131_2010 Page: 1 of 8 Date: April 14, 2010 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

Microsoft Word - H6800BM_translation base_Update_1_2014_ doc

Microsoft Word - H6800BM_translation base_Update_1_2014_ doc zh- HK M.-Nr. 10 188 760 ... 8... 23... 24... 25 On/Off/... 26... 26...... 28... 29... 29... 31... 32... 32... 32... 32... 32... 33... 33... 37... 37... 37... 37... 37 PerfectClean... 38... 39... 39...

More information

使用手冊

使用手冊 使用手冊 版權所有 2013 年 Microtek International, Inc. 保留所有權利 商標 Microtek MII MiiNDT ScanWizard Microtek International, Inc. Windows Microsoft Corporation 重要須知 Microtek Microtek Windows Microsoft Windows I49-004528

More information

untitled

untitled http://idc.hust.edu.cn/~rxli/ 1.1 1.2 1.3 1.4 1.5 1.6 2 1.1 1.1.1 1.1.2 1.1.3 3 1.1.1 Data (0005794, 601,, 1, 1948.03.26, 01) (,,,,,) 4 1.1.1 Database DB 5 1.1.1 (DBMS) DDL ( Create, Drop, Alter) DML(

More information

Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Micro

Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Micro Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( nvidia

More information

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f 27 1 Vol.27 No.1 CEMENTED CARBIDE 2010 2 Feb.2010!"!!!!"!!!!"!" doi:10.3969/j.issn.1003-7292.2010.01.011 OPC 1 1 2 1 (1., 412008; 2., 518052), OPC, WinCC VB,,, OPC ; ;VB ;WinCC Application of OPC Technology

More information

93年各縣國中教師甄試最新考情.doc

93年各縣國中教師甄試最新考情.doc 93 7/8()~7/13() 7/11()~7/13() 7/17() 7/18() 7/18() 7/19() 7/21() 40% 20%( ( )) 20%( ) 1 35% 25% ( ) 70% 10%( ) 60% 1 20% 10% ( ) 6/1()~6/11() 6/12()~6/14() 6/19() 6/21() 6/26() 6/26()22:00 7/3() 40%( )

More information

(Microsoft PowerPoint - UML\302\262\244\266_use case.ppt)

(Microsoft PowerPoint - UML\302\262\244\266_use case.ppt) UML 簡 介 _Use Case Diagram 資 訊 科 技 系 林 偉 川 UML 簡 介 2 1 UML UML 是 Unified Modeling Language 的 縮 寫, 中 文 翻 譯 為 統 一 塑 模 語 言 UML 統 合 了 物 件 導 向 方 法 論 之 各 派 不 同 的 方 法, 提 供 了 一 致 性 的 圖 形 語 言 做 為 開 發 系 統 的 溝 通 媒

More information

30 2008,2(1) 基 礎 上, 各 種 數 據 均 以 圖 形 化 方 式 表 達, 因 此 各 級 分 析 結 果 均 可 以 隨 時 檢 驗 另 外, 由 於 系 統 是 以 網 站 形 式 發 佈, 任 何 用 戶 均 可 通 過 網 絡 查 詢 瀏 覽 系 統 中 的 數 據, 因

30 2008,2(1) 基 礎 上, 各 種 數 據 均 以 圖 形 化 方 式 表 達, 因 此 各 級 分 析 結 果 均 可 以 隨 時 檢 驗 另 外, 由 於 系 統 是 以 網 站 形 式 發 佈, 任 何 用 戶 均 可 通 過 網 絡 查 詢 瀏 覽 系 統 中 的 數 據, 因 第 2 卷 第 1 期 澳 門 科 技 大 學 學 報 Vol.2 No.1 2008 年 6 月 30 日 Journal of Macau University of Science and Technology June 30, 2008 29 月 球 探 測 數 據 實 時 管 理 系 統 的 開 發 朱 紅 岷 **, 祝 夢 華, 劉 良 鋼 *, 許 敖 敖 ( 澳 門 科 技 大 學

More information

1.JasperReport ireport JasperReport ireport JDK JDK JDK JDK ant ant...6

1.JasperReport ireport JasperReport ireport JDK JDK JDK JDK ant ant...6 www.brainysoft.net 1.JasperReport ireport...4 1.1 JasperReport...4 1.2 ireport...4 2....4 2.1 JDK...4 2.1.1 JDK...4 2.1.2 JDK...5 2.1.3 JDK...5 2.2 ant...6 2.2.1 ant...6 2.2.2 ant...6 2.3 JasperReport...7

More information

习题1

习题1 习 题 1 数 据 库 系 统 基 本 概 念 1.1 名 词 解 释 DB DB 是 长 期 存 储 在 计 算 机 内 有 组 织 的 统 一 管 理 的 相 关 数 据 的 集 合 DB 能 为 各 种 用 户 共 享, 具 有 较 小 冗 余 度 数 据 间 联 系 紧 密 而 又 有 较 高 的 数 据 独 立 性 等 特 点 DBMS 是 位 于 用 户 与 操 作 系 统 之 间 的

More information