一 MATLAB 基本操作 1-1 MATLAB 視窗簡介 MATLAB 啟動後, 可產生預設的 MATLAB 桌面 (MATLAB Desktop), 其外觀如下 : 圖 1.1 MATLAB 桌面視窗 在上圖中,MATLAB 桌面被分割成兩個小視窗, 左邊是 命令歷史列 (List of Com

Size: px
Start display at page:

Download "一 MATLAB 基本操作 1-1 MATLAB 視窗簡介 MATLAB 啟動後, 可產生預設的 MATLAB 桌面 (MATLAB Desktop), 其外觀如下 : 圖 1.1 MATLAB 桌面視窗 在上圖中,MATLAB 桌面被分割成兩個小視窗, 左邊是 命令歷史列 (List of Com"

Transcription

1 一 MATLAB 基本操作 1-1 MATLAB 視窗簡介 MATLAB 啟動後, 可產生預設的 MATLAB 桌面 (MATLAB Desktop), 其外觀如下 : 圖 1.1 MATLAB 桌面視窗 在上圖中,MATLAB 桌面被分割成兩個小視窗, 左邊是 命令歷史列 (List of Command History), 右邊則是 命令視窗 (CommandWindow), 此命令視窗即為 MATLAB 桌面還包含很多其他視窗, 這些視窗可由 View 的下拉式選單來開啟或關閉, 摘要如下 : View/Command Window: 開啟或關閉 命令視窗 View/Command History: 開啟或關閉 命令歷史列 View/MATLAB Browser: 開啟或關閉 MATLAB 瀏覽器 View/Help Browser: 開啟或關閉 線上支援瀏覽器 View/File Brower: 開啟或關閉 檔案瀏覽器 View/Workspace Browser: 開啟或關閉 工作空間瀏覽器 若同時開啟這些視窗,MATLAB 桌面會顯得擁擠不堪, 其外觀如下 :

2 圖 1.2 MATLAB 視窗 此時您可以關閉不重要的視窗, 或者直接點選視窗並向外拖放, 讓視窗獨立於 MATLAB 桌布之外 若您已被太多的視窗搞的暈頭轉向, 可點選 View/Restore Default Configuration, 一切就可恢復原狀 1-2 MATLAB 資料型態 變數與向量 矩陣的基本運算 資料型態 :Matlab 提供有 char double sparse unit8 cell struct 等六種型態, 每一種都是陣列模式 型態類別 範例 說明 char char Luoson-1 字元陣列 每一個字元用 16 個位元表示 double [1.5 2;0.01 0] 倍精準數值陣列 一般運算子 函式 陣列函式都支援 sparse speye(4) 倍精準數植稀疏陣列 僅適用於二維陣列, 只儲存非零元素與其向量 運算時須配合特殊的運算函式, 例如 :splu spchol unit8 unit(magic(3)) 倍精準數植稀疏陣列 僅適用於二

3 維陣列, 只儲存非零元素與其向量 運算時須配合特殊的運算函式, 例如 :splu spchol cell { Luoson 100 eye(2)} 密室陣列 可以包含其它不同類別的資料陣列, 適用於大型資料庫使用 struct UserObject Cat.name= mimi Cat.age=1.2 Cat.color= yellow 結構陣列 與密室陣列一樣, 可以將不同的資料型態包在同一個變數名稱下, 但結構陣列另外含有欄位名稱 使用者定義的資料型態 運算子 :Matlab 運算子型態有數學 (ex:/ +, -, *, / ) 關係 (ex:/ >, < ) 邏輯運算子(and, or ) 三種, 處理順序為數學運算子 > 關係運算子 > 邏輯運算子 MATLAB 認識一般常用到的加 (+) 減(-) 乘(*) 除(/) 冪次(^) 等數學運算符號, 因此在 MATLAB 下進行基本運算, 最快速簡單的方式在命令視窗 (Command Window) 內的提示符號 (>>) 之後輸入運算式, 並按入 Enter 鍵即可 MATLAB 會將運算結果直接存入預設變數 ans, 代表 MATLAB 運算後的答案 (Answer), 並在螢幕上顯示其運算結果的數值 由於運算式後面有加入分號, 因此 MATLAB 只會將運算結果儲存在預設變數 ans 內, 不會顯示於螢幕上 ; 在有需要時取用或顯示此運算結果, 可直接鍵入變數 ans 即可 使用者也可將運算結果儲存於使用者自己設定的變數 x 內 MATLAB 的變數來儲存純量 (Scalars), 其實 MATLAB 中的變數還可用來儲存向量 (Vectors) 及矩陣 (Matrix), 以進行各種運算 使用者可以建立 m n 大小的矩陣 (m 代表矩陣的橫列數,n 代表矩陣的直行數 ), 但必需在每一橫列結尾加上分號 (;) 運算子符號 功能 範例. 轉置矩陣 AT A=[10 1 2]; A. =[10; 1; 2].^ 矩陣的次方運算 A.^3=[ ]; A.^0.5=[ ] 共軛複數 Z=4+5i; Z =4-5i ^ 方陣次方 M=[1 2; 3 4]; M^2=[7 10; 15 22].* 乘法運算 10.* 100=1000./ 右除法 100./ 10=10.\ 左除法 100.\ 10= * 矩陣乘法運算 A=[ ]; B=[3.5; -5]; A*B= / 矩陣右除法運算 A=[ ]; A/2=[ ]

4 \ 矩陣左除法運算 B=[3.5;-5]; 2\B=[ ] + 加法運算 B=[3.5;-5]; 2\B=[ ] - 減法運算 M-N=[ ] <= 小於或等於 A=[ ]; B=[ ] A<=B; ans: [ ] A<=1; ans: [ ] >= 大於或等於 A=[ ]; B=[ ] A>=B; ans: [ ]// A>=1; ans: [ ] == 相等 A=[ ]; B=[ ] A==B; ans: [ ]// A==1; ans: [ ] ~= 不相等 A=[ ]; B=[ ] A~=B; ans: [ ]// A~=1; ans: [ ] & And C=[ ]; D=[ ] C&D; ans: [ ]// C&1; ans: [ ] Or C=[ ]; D=[ ] C D; ans: [ ]// C 1; ans: [ ] ~ Not C=[ ]; D=[ ] ~C; ans: [ ]// ~1; ans: 0

5 實習一 : 變數與矩陣 實例演練一 >> A=[3.5] >> B=[1.5,3.1] >> C=[-1,0,0;1,1,0;1,-1,0;0,0,2] C = >> X= C (:,1) X = >> Y=C(:,2:3) Y = >> A=[1 2 3; ; 7 8 9] A = >> B=inv(A) >> S=1-1/2+1/3-1/4+1/5-1/6+1/7-1/8 +1/9+1/10 >> format short >> format short g >> format long >> format long e >> format long g >> format bank >> format rat >> format hex 實例演練二 % Prupose: Introduce the Input prompt a=[1 2 3] c=[4;5;6] a*c dot(a,c) A=c*a b=a.^2 a.*b exp(a) log(ans) sqrt(a) format long sqrt(a) a = c = A = e-016 e = i i C = D =

6 format 2^(-24) sum(b),mean(c) pi y=tan(pi/6) B=[-3 0 1; 2 5-7; ] x=b\c norm(b*x-c) e=eig(b) [V,D]=eig(B); v=1:6; w=2:3:10,y=1:-0.25:0; C=[A,[8;9;10]],D=[B;a] C(2,3) C(2:3,1:2) I3=eye(3,3),Y=zeros(3,5),Z=ones(2) rand('state',20),randn('state',20) F=rand(3),G=randn(1,5) who workspace b = e y = B = x = I3 = Y = Z = F = G = Your variables are: A C F I 3 Y a b e w y B D G V Z ans c v x % File:

7 二 MATLAB 常用函式 2.1 矩陣產生函式 函式 zeros ones eye repmat rand randn linspace logspace meshgrid 功能產生零矩陣 (zeros array) 產生全部元素均為一的矩陣 (ones array) 產生單位矩陣 (identity matrix) 產生元素區塊重複矩陣產生均勻分佈亂數產生正規分佈亂數產生線性空間產生對數空間產生給 3-D plots 的 X 和 Y 陣列 2.2 基本陣列資料函式 函式 size length ndims disp isempty isequal isnumeric islogical logical 功能矩陣大小向量長度陣列的階數顯示陣列或文字檢測空矩陣檢測單位矩陣檢測數值矩陣檢測邏輯矩陣轉換數值矩陣為邏輯矩陣 2.3 矩陣運算操作函式 函式 reshape diag tril triu liplr flipud flipdim rot90 功能更改矩陣形狀對角矩陣或陣列取出矩陣下三角部份取出矩陣上三角部份將矩陣左右對調將矩陣上下對調將矩陣沿特定方向對調將矩陣旋轉 90 度

8 find sub2ind ind2sub 找出非零元素的指標最後指標 Linear index from multiple subscripts Multiple subscripts from linear index. 2.4 一般數學函式 函式 功能 sin(x) The sine of the elements of X. cos(x) The sine of the elements of X. tan(x) The tangent of the elements of X. asin(x) Inverse sine. acos(x) Inverse cosine. atan(x) Inverse tangent. atan2(y,x) Four quadrant inverse tangent D 繪圖函式 函式 功能 plot(x,y) Plots vector Y versus vector X. semilogx(x,y) Semi-log scale plot. semilogx(x,y) Semi-log scale plot. loglog(x,y) Log-log scale plot. Axis,axis(v) Control axis scaling and appearance. subplot Create axes in tiled positions. title Graph title. 2.6 數值分析函式 函式 功能 max(x) The largest element in X [y,k]=max(x) Returns the indices of the maximum values in vector I. max(x,y) Returns an array the same size as X and Y with the largest elements taken from X or Y. min(x) The smallest element in X [y,k]=min(x) Returns an array the same size as X and Y with the smallest elements taken from X or Y. min(x,y) The sum of the elements of X. min(x,y) The product of the elements of X

9 prod(x) The product of the elements of X. cumsum(x) A vector containing the cumulative product of the elements of X. cumprod(x) A vector containing the cumulative product of the elements of X mean(x) The mean value of the elements in X. median(x) The median value of the elements in X. sort(x) Sorts the elements of X in ascing order. std(x) Returns the standard deviation hist(x) Bins the elements of Y into 10 equally spaced containers hist(x,n) Returns the number of elements in each container. sum(x) The sum of the elements of X. 2.7 輸入與輸出函式 函式 fprintf save load load disp 功能 Write formatted data to file. Save workspace variables to disk. Load workspace variables from disk Prompt for user input Displays the array, without printing the array name

10 實習二 :MATLAB 常用函式 實例演練一 % Prupose: Interaction and Script Files (1+sqrt(5))/2 2^(-53) x=sin(22) y=2*x+exp(-3)/(1+cos(.1)); x=2,y=cos(.3),z=3*x*y exmark=[ ] exsort=sort(exmark) exmean=mean(exmark) exmed=median(exmark) exstd=std(exmark) A=rand(3) inv(a) ans*a format short e ans %help sqrt %lookfor elliptic x=1+1/2+1/3+1/4+1/5+1/ /7+1/8+1/9+1/10 w=(-1)^0.25 exp(i*pi) save filename A x A=eye(2);disp(A); disp('result:'),disp(1/7) e e-016 x = e-003 x = 2 y = e-001 z = e+000 exmark = exsort = exmean = e+001 exmed = 12 exstd = e+001 A = e e e e e e e e e e e e e e e e e e e e e e e e e e-016

11 1.7764e e e e+000 x = e+000 w = e e-001i e e-016i Result: e-001

12 三 程式流程控制 關鍵字 if, else, elseif switch, case, otherwise while for 功能根據邏輯條件, 來執行一群運算 根據條件值, 來選擇執行項目根據邏輯條件, 來決定迴圈的執行次數 執行一固定次數的迴圈 if 邏輯表示式子運算指令 End if 邏輯表示式子運算指令一 else 運算指令二 End if, else, else, 與 switch 語法 if 邏輯條件一運算指令一 elseif 邏輯條件二運算指令二 elseif 邏輯條件三運算指令三.. else 運算指令四 switch 評估描述子 ( 整數或字串 ) case 數值 ( 或字串 ) 條件一運算指令一 case 數值 ( 或字串 ) 條件二運算指令二.. otherwise 運算指令 N while, 與 for 語法 運算指令一 white ( 終止條件 ) 運算指令二 運算指令一 white ( 終止條件 ) 運算指令二 End

13 實習三 :MATLAB 程式流程控制 實例演練一 x=[8], y=[6], if x>y temp=y; y=x; x=temp; if x>0 x=sqrt(x) e=exp(1); if 2^e > e^2 disp('2^e is bigger') else disp('e^2 is bigger') if isnan(x) disp('not a Number') elseif isinf(x) disp('plus or minus infinity') else disp('a''regular''float point number') x = 8 y = 6 x = e^2 is bigger A'regular'float point number 實例演練二 % Prupose: Flow Control: for, while, switch s=0; for i=1:25,s=s+1/i,, s for x=[pi/6 pi/4 pi/3],disp([x,sin(x)]), n=5;a=eye(n); for j=2:n for i=1:j-1 A(i,j)=i/j; A(j,i)=i/j; x=1; while x>0,xmin=x;x=x/2; xmin x=1; while 1 xmin=x; x xmin = e-324 xmin = e Enter a real number:5 Nonzero and finite >>

14 x=x/2; if x== 0,break, xmin for i=1:10 if i<5, continue, disp(i) p=2; switch p case 1 y=sum(abs(x)); case 2 y=sort(x'*x); case inf y=max(abs(x)); otherwise error('p must be 1, 2 or inf.'); x=input('enter a real number:'); switch x case {inf,-inf} disp('plus or minus infinity') case 0 disp('zero') otherwise disp('nonzero and finite')

untitled

untitled Matrix Laboratory (Matlab) MATLAB MATLAB MathWorks 1984 年 數 MATrix LABoratory 理念 令 數 MATLAB 數 理 2 MATLAB MATLAB 5 3 MATLAB 5 MATLAB 令 MATLAB 列 MATLAB Workspace Browser 路 Path Browser Simulink Simulink

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

Microsoft Word - Vector and Matrix 2.doc

Microsoft Word - Vector and Matrix 2.doc 陣列 (Array) 陣列依其維度可分為一維 二維以及多維 若陣列只有一維, 稱之為向量 (vector); 陣列為二維, 則稱之為矩陣 (matrix) 壹 向量一 建立向量的基本函數 說明 [ ] 建立陣列 -3:3 從 -3 到 3, 間距 1, 建立一個列向量 -3:0.1:3 從 -3 到 3, 間距 0.1, 建立一個列向量 linspace(-3,3) 從 -3 到 3, 建立 100

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

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

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

穨matlab教學範例ccc.doc

穨matlab教學範例ccc.doc MATLAB ( Math Dept. of University of New Hampshire) ( ) 1. Tutorial on vectors 2. Tutorial on matrices 3. Tutorial on vector operations 4. Tutorial on loops 5. Tutorial on plots 6. Tutorial on executable

More information

Microsoft PowerPoint - C_Structure.ppt

Microsoft PowerPoint - C_Structure.ppt 結構與其他資料型態 Janet Huang 5-1 結構的宣告 struct 結構名稱 struct 結構名稱變數 1, 變數 2,, 變數 m; struct 結構名稱 變數 1, 變數 2,, 變數 m; student; student; 5-2 1 結構變數初值的設定 struct 結構名稱 struct 結構名稱變數 = 初值 1, 初值 2,, 初值 n student="janet","1350901",100,95

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

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

4 18 19 [1] (p.28) 50 2500 18 19 1 1. 2 2. / / 3 4 [1] (p.26) [2] (p.171) 3 1998 4 13 4

4 18 19 [1] (p.28) 50 2500 18 19 1 1. 2 2. / / 3 4 [1] (p.26) [2] (p.171) 3 1998 4 13 4 2012 13 No.13,2012 History Teaching 650 Sum No.650 510631 [ ] [ ]G63 [ ]B [ ]0457-6241 2012 13-0003-11 [1] pp.25~26 1 2.4 30 62 30 102 28 =30 2 2012-05-07 3 4 18 19 [1] (p.28) 50 2500 18 19 1 1. 2 2. /

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

Excel VBA Excel Visual Basic for Application

Excel VBA  Excel Visual Basic for Application Excel VBA Jun5,00 Sub 分頁 () Dim i As Integer Dim Cname As String Dim Code As Variant Set score=thisworkbook.sheets("sheet") Code=Array(" 專北一 "," 專北二 "," 專北三 "," 專桃園 "," 專桃竹 "," 專中苗 ", " 專台中 "," 專台南 ","

More information

Chapter 24 DC Battery Sizing

Chapter 24  DC Battery Sizing 26 (Battery Sizing & Discharge Analysis) - 1. 2. 3. ETAP PowerStation IEEE 485 26-1 ETAP PowerStation 4.7 IEEE 485 ETAP PowerStation 26-2 ETAP PowerStation 4.7 26.1 (Study Toolbar) / (Run Battery Sizing

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

More information

Ps22Pdf

Ps22Pdf A B C D A B C D A B C D a a b c x x x x x x x x x x x x x x x x x a b c x a x x x x x x x x x x a b a b a b x x x x x x x x x x x x A B C A B C A B A B A x B C x D A B C a b c a b x x x x x x x A B A

More information

2006..,1..,2.,.,2..,3..,3 22..,4..,4 :..,5..,5 :..,5..,6..,6..,8..,10 :..,12..,1..,6..,6..,2 1907..,5,:..,1 :..,1 :..,1 :..,2..,2..,3 :..,1 :..,1..,1.

2006..,1..,2.,.,2..,3..,3 22..,4..,4 :..,5..,5 :..,5..,6..,6..,8..,10 :..,12..,1..,6..,6..,2 1907..,5,:..,1 :..,1 :..,1 :..,2..,2..,3 :..,1 :..,1..,1. 2006 2005..,5..,2 20 20..,2..,3..,3..,3..,3..,3..,5..,5 :..,8 1861 :..,11..,12 2005..,2..,1..,2..,1..,4..,6..,6 :..,10..,4..,4..,5..,1 :..,4..,6..,3..,4 1910..,5 :1930..,1..,4..,2 :..,2..,2..,1 19.., 1..,1..,1..,3..,3

More information

衛星影像分類

衛星影像分類 年 理 理 立 立 列 SPOT 立 年 理 2 , 量 不 料 -Raster 量,, -Vector? 立 年 理 3 料 (Binary Data) 省 理 率 料來 CCD (Charge Couple Device) (Scanner) 數, 數 錄? 立 年 理 4 :Picture Element or Pixel : 不 不 狀 X,Y Column,Row Sample,Line

More information

教学大纲

教学大纲 山 东 城 市 建 设 职 业 学 院 工 程 数 学 教 学 大 纲 一 课 程 的 性 质 与 任 务 工 程 数 学 是 工 科 各 专 业 的 一 门 重 要 的 基 础 课, 也 是 该 专 业 的 核 心 课 程 主 要 分 为 高 等 数 学 部 分, 工 程 数 学 部 分, 数 学 实 验 部 分, 数 学 建 模 部 分 通 过 本 课 程 的 学 习, 使 学 生 获 得 向

More information

Matlab_basic

Matlab_basic MATLAB 基本操作 ( 參考資料 : 電腦在化工上之應用逢甲大學陳奇中老師 ) Introduction to MATLAB MATLAB 為美國 Mathworks 公司於 1984 年所推出的數學科技運算軟體 其名稱來自於 MATrix LABobratory 的縮寫, 特長於矩陣相關運算及各領域數值問題 目前最新版本為 7.11, 本校計中版本為 6.1 與 7.x, 其網站為 http://www.mathworks.com

More information

例題. y = x x = 0 y = x 0 li 0 li 0 li = y = x x = 0 = f x) x = a x = a 2

例題. y = x x = 0 y = x 0 li 0 li 0 li = y = x x = 0 = f x) x = a x = a 2 y = x x = 0 y 2 0 2 x Figure : y = x f x) x = a f x) x = a f a) dy dx x=a f a) x a f x) f a) x a f a + ) f a) f x) x = a f x) x = a y = x x = 0 例題. y = x x = 0 y = x 0 li 0 li 0 li = y = x x = 0 = f x)

More information

Microsoft Word - C-pgm-ws2010.doc

Microsoft Word - C-pgm-ws2010.doc Information and Communication Technology 資訊與通訊科技 Loops (while/for) C 廻路 姓名 : 班別 : ( ) CS C Programming #1 Functions 函數 : 1 若 n=14, 求以下表示式的值 Expressions 表示式 Value 值 Expressions 表示式 Value 值 A 20 2 * (n /

More information

untitled

untitled 數 Quadratic Equations 數 Contents 錄 : Quadratic Equations Distinction between identities and equations. Linear equation in one unknown 3 ways to solve quadratic equations 3 Equations transformed to quadratic

More information

untitled

untitled 1 Outline 流 ( ) 流 ( ) 流 ( ) 流 ( ) 流 ( ) 狀 流 ( ) 利 來 行流 if () 立 行 ; else 不 立 行 ; 例 sample2-a1 (1) 列 // 料 Console.Write(""); string name = Console.ReadLine(); Console.WriteLine(" " + name + "!!"); 例 sample2-a1

More information

新・解きながら学ぶC言語

新・解きながら学ぶC言語 330!... 67!=... 42 "... 215 " "... 6, 77, 222 #define... 114, 194 #include... 145 %... 21 %... 21 %%... 21 %f... 26 %ld... 162 %lf... 26 %lu... 162 %o... 180 %p... 248 %s... 223, 224 %u... 162 %x... 180

More information

論鄭玄對《禮記‧月令》的考辨

論鄭玄對《禮記‧月令》的考辨 19997 183-196 論 鄭 玄 對 禮 記 月 令 的 考 辨 183 論 鄭 玄 對 禮 記 月 令 的 考 辨 一 問 題 的 背 景 20b 8a 1 472 24 20a 33 7a 2 3 1 35 60 64 472 240241 2 1a 3 19b 184 4 5 二 鄭 玄 考 辨 月 令 成 書 時 代 及 來 源 的 論 證 65 4 20b 282 5 235244

More information

Microsoft Word - 2012-2013选题

Microsoft Word - 2012-2013选题 2012-2013 春 夏 程 序 设 计 综 合 实 验 选 题 要 求 : 学 生 必 须 综 合 应 用 数 组 结 构 指 针 链 表 文 件 等 知 识 点, 以 及 图 形 图 像 音 效 汉 字 中 断 键 盘 鼠 标 中 断 等 等 高 级 技 术 一 题 目 列 表 1. 教 学 计 划 安 排 系 统 2. C 教 学 助 手 (CAssist) 3. 绘 图 工 具 软 件 4.

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

! "#$%& $()*+#$, $(-.&,./.+#/(-.&01( &-#&(&$# (&2*(,#-3.,14& $ +()5(*-#5(-#/-/#(-1#&-+)(& :;<<= > A B?

! #$%& $()*+#$, $(-.&,./.+#/(-.&01( &-#&(&$# (&2*(,#-3.,14& $ +()5(*-#5(-#/-/#(-1#&-+)(& :;<<= >  A B? ! "#$%& $()*+#$, $(-.&,./.+#/(-.&01( &-#&(&$# (&2*(,#-3.,14& $ +()5(*-#5(-#/-/#(-1#&-+)(&- 67789:;

More information

untitled

untitled 1 Outline 數 料 數 數 列 亂數 練 數 數 數 來 數 數 來 數 料 利 料 來 數 A-Z a-z _ () 不 數 0-9 數 不 數 SCHOOL School school 數 讀 school_name schoolname 易 不 C# my name 7_eleven B&Q new C# (1) public protected private params override

More information

( CIP) /. :, ( ) ISBN TP CIP ( 2005) : : : : * : : 174 ( A ) : : ( 023) : ( 023)

( CIP) /. :, ( ) ISBN TP CIP ( 2005) : : : : * : : 174 ( A ) : : ( 023) : ( 023) ( CIP) /. :, 2005. 2 ( ) ISBN 7-5624-3339-9.......... TP311. 1 CIP ( 2005) 011794 : : : : * : : 174 ( A ) :400030 : ( 023) 65102378 65105781 : ( 023) 65103686 65105565 : http: / /www. cqup. com. cn : fxk@cqup.

More information

!"# $%& %!"# $%& %!"#$%& %! ( )***%% ) $)! +**+),,* -)+.* )( ) +, +*.*)+..**! )$,*)+$))$!"!#

!# $%& %!# $%& %!#$%& %! ( )***%% ) $)! +**+),,* -)+.* )( ) +, +*.*)+..**! )$,*)+$))$!!# !"#$%& % ( % )& (% ( % (( )( !"# $%& %!"# $%& %!"#$%& %! ( )***%% ) $)! +**+),,* -)+.* )( ) +, +*.*)+..**! )$,*)+$))$!"!# !"#$%& %!! "! # " $ # % & & ( ) *!+ !"#$%& % ( (*( (*+ "#$% $%%"# (*, (*% + +*(

More information

######## First set of commands x <- 0.5; y <- 0 if (x>3) y <- 1 else y <- 2 ######## Second set of commands x <- 0.5; y <- 0 if (x>3) y <- 1 else ###

######## First set of commands x <- 0.5; y <- 0 if (x>3) y <- 1 else y <- 2 ######## Second set of commands x <- 0.5; y <- 0 if (x>3) y <- 1 else ### 流程控制 : if, for, while, repeat Textbook reading: Chapter 7. 條件執行 :if 指令或 if-else 指令. 當條件 A 為 TRUE 時, 執行命令 C 的語法為 if ( A ) C 當條件 A 為 TRUE 時執行命令 C, 否則執行命令 D 的語法為 if ( A ) C else D A simple example. x

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

Microsoft PowerPoint - STU_EC_Ch04.ppt

Microsoft PowerPoint - STU_EC_Ch04.ppt 樹德科技大學資訊工程系 Chapter 4: Boolean Algebra and Logic Simplification Shi-Huang Chen Fall 200 Outline Boolean Operations and Expressions Laws and Rules of Boolean Algebra DeMorgan's Theorems Boolean Analysis

More information

C++ 程序设计 告别 OJ1 - 参考答案 MASTER 2019 年 5 月 3 日 1

C++ 程序设计 告别 OJ1 - 参考答案 MASTER 2019 年 5 月 3 日 1 C++ 程序设计 告别 OJ1 - 参考答案 MASTER 2019 年 月 3 日 1 1 INPUTOUTPUT 1 InputOutput 题目描述 用 cin 输入你的姓名 ( 没有空格 ) 和年龄 ( 整数 ), 并用 cout 输出 输入输出符合以下范例 输入 master 999 输出 I am master, 999 years old. 注意 "," 后面有一个空格,"." 结束,

More information

Microsoft Word - 09.數學136-281.docx

Microsoft Word - 09.數學136-281.docx 136. 計 算 梯 型 面 積 (1 分 ) 請 以 JAVA 運 算 式 計 算 下 面 梯 形 面 積, 並 輸 出 面 積 結 果 梯 形 面 積 公 式 為 :( 上 底 + 下 底 ) 高 2 每 一 組 依 序 分 別 輸 入 梯 形 的 上 底 下 底 及 高 的 整 數 輸 出 梯 形 面 積 輸 入 輸 出 94 190 120 99 54 47 137. 計 算 三 角 形 面

More information

迴圈控制 : for, while, repeat Textbook reading: Chapter 7. 固定次數迴圈 : for 指令. 假設有 k 個指令 C(1),..., C(k), 而我們要依序完成其中的 C(m),..., C(n), 語法為 for ( i in m:n) { C(

迴圈控制 : for, while, repeat Textbook reading: Chapter 7. 固定次數迴圈 : for 指令. 假設有 k 個指令 C(1),..., C(k), 而我們要依序完成其中的 C(m),..., C(n), 語法為 for ( i in m:n) { C( 迴圈控制 : for, while, repeat Textbook reading: Chapter 7. 固定次數迴圈 : for 指令. 假設有 k 個指令 C(1),..., C(k), 而我們要依序完成其中的 C(m),..., C(n), 語法為 for ( i in m:n) { C(i) 通常在 for 迴圈開始前, 會定義一個存結果的物件, 而在迴圈執行時更新物件. Example

More information

9202reply-s.doc

9202reply-s.doc 1 16 () (A) (B) (C) (D) B () B D (B) (D)22 (A) (B) (C) 5 12 C C 34 2 3 1. 89 42 (B) 2. 42 151 44 27 () () 69 79 89 (A) ( ) 1,803 2,039 2,217 (B) (/) 4.8 4.0 3.3 (C) 65 (%) 4.1 6.1 8.5 (D) (%) 9.9 15.8

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

4

4 練習 9A ( 9. 特殊角的三角比 T ( 在本練習中, 不得使用計算機 如有需要, 答案以根式或分數表示. 試完成下表 三角比 θ 0 4 60 sin θ cos θ tan θ 求下列各數式的值 (. cos 60. sin 4 4. tan 4. cos0 4 tan 0 7. sin 4 cos 4 8. cos 60 tan 4 9. tan 60sin 0 0. sin 60 cos

More information

Microsoft Word - 第3章.doc

Microsoft Word - 第3章.doc Java C++ Pascal C# C# if if if for while do while foreach while do while C# 3.1.1 ; 3-1 ischeck Test() While ischeck while static bool ischeck = true; public static void Test() while (ischeck) ; ischeck

More information

C/C++语言 - 运算符、表达式和语句

C/C++语言 - 运算符、表达式和语句 C/C++ Table of contents 1. 2. 3. 4. C C++ 5. 6. 7. 1 i // shoe1.c: # include # define ADJUST 7. 64 # define SCALE 0. 325 int main ( void ) { double shoe, foot ; shoe = 9. 0; foot = SCALE * shoe

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

Microsoft Word - data_mid1611_and_sol.docx

Microsoft Word - data_mid1611_and_sol.docx Department of Computer Science and Engineering National Sun Yat-sen University Data Structures - Middle Exam, Nov. 14, 2016 1. Explain each of the following terms. (16%) (a) private in C++ language (b)

More information

科学计算的语言-FORTRAN95

科学计算的语言-FORTRAN95 科 学 计 算 的 语 言 -FORTRAN95 目 录 第 一 篇 闲 话 第 1 章 目 的 是 计 算 第 2 章 FORTRAN95 如 何 描 述 计 算 第 3 章 FORTRAN 的 编 译 系 统 第 二 篇 计 算 的 叙 述 第 4 章 FORTRAN95 语 言 的 形 貌 第 5 章 准 备 数 据 第 6 章 构 造 数 据 第 7 章 声 明 数 据 第 8 章 构 造

More information

新・明解C言語入門編『索引』

新・明解C言語入門編『索引』 !... 75!=... 48 "... 234 " "... 9, 84, 240 #define... 118, 213 #include... 148 %... 23 %... 23, 24 %%... 23 %d... 4 %f... 29 %ld... 177 %lf... 31 %lu... 177 %o... 196 %p... 262 %s... 242, 244 %u... 177

More information

Microsoft PowerPoint - 20-string-s.pptx

Microsoft PowerPoint - 20-string-s.pptx String 1 String/ 1.: char s1[10]; char *s2; char s3[] = "Chan Tai Man"; char s4[20] = "Chan Siu Ming"; char s5[]={'h','e','l','l','o','\0'; 0 1 2 3 4 5 6 7 8 9 10 11 12 s3 C h a n T a i \0 M a n \0 printf

More information

第5章修改稿

第5章修改稿 (Programming Language), ok,, if then else,(), ()() 5.0 5.0.0, (Variable Declaration) var x : T x, T, x,,,, var x : T P = x, x' : T P P, () var x:t P,,, yz, var x : int x:=2. y := x+z = x, x' : int x' =2

More information

新版 明解C言語入門編

新版 明解C言語入門編 328, 4, 110, 189, 103, 11... 318. 274 6 ; 10 ; 5? 48 & & 228! 61!= 42 ^= 66 _ 82 /= 66 /* 3 / 19 ~ 164 OR 53 OR 164 = 66 ( ) 115 ( ) 31 ^ OR 164 [] 89, 241 [] 324 + + 4, 19, 241 + + 22 ++ 67 ++ 73 += 66

More information

Microsoft PowerPoint _代工實例-1

Microsoft PowerPoint _代工實例-1 4302 動態光散射儀 (Dynamic Light Scattering) 代工實例與結果解析 生醫暨非破壞性分析團隊 2016.10 updated Which Size to Measure? Diameter Many techniques make the useful and convenient assumption that every particle is a sphere. The

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 Fortran Chapter 7 Subroutine ( ) and Function 7-1 subroution 行 不 行 來 行 The general form of a subroutine is subroutine subroutine_name ( argument_list) (Declaration section) (Execution section) retrun end

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

mvc

mvc Build an application Tutor : Michael Pan Application Source codes - - Frameworks Xib files - - Resources - ( ) info.plist - UIKit Framework UIApplication Event status bar, icon... delegation [UIApplication

More information

Microsoft Word - PHP7Ch01.docx

Microsoft Word - PHP7Ch01.docx PHP 01 1-6 PHP PHP HTML HTML PHP CSSJavaScript PHP PHP 1-6-1 PHP HTML PHP HTML 1. Notepad++ \ch01\hello.php 01: 02: 03: 04: 05: PHP 06:

More information

Matlab和应用数学2-2.ppt [兼容模式]

Matlab和应用数学2-2.ppt [兼容模式] MATLAB 矩 阵 运 算 上 课 日 期 :2007.7.12 2007.7.18 教 学 方 法 : 授 课 上 机 练 习 和 自 学 相 结 合 授 课 教 师 : 梁 克 维 (matlkw@zju.edu.cn) 上 上 课 : 上 午 8:30 11:30, 西 1-204 机 : 下 午 1:00-4:00, 计 算 机 中 心 MATLAB 矩 阵 矩 阵 的 建 立 1. 直

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

nooog

nooog C : : : , C C,,, C, C,, C ( ), ( ) C,,, ;,, ; C,,, ;, ;, ;, ;,,,, ;,,, ; : 1 9, 2 3, 4, 5, 6 10 11, 7 8, 12 13,,,,, 2008 1 1 (1 ) 1.1 (1 ) 1.1.1 ( ) 1.1.2 ( ) 1.1.3 ( ) 1.1.4 ( ) 1.1.5 ( ) 1.2 ( ) 1.2.1

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

一 课 程 基 本 情 况 课 程 名 称 工 程 应 用 数 学 ( 计 算 机 类 ) 编 码 51611026 所 属 部 门 工 业 中 心 课 程 所 属 专 业 课 程 所 属 模 块 数 学 计 算 机 类 任 课 教 师 情 况 ( 人 数 ) 教 授 副 教 授 讲 师 助 教 3

一 课 程 基 本 情 况 课 程 名 称 工 程 应 用 数 学 ( 计 算 机 类 ) 编 码 51611026 所 属 部 门 工 业 中 心 课 程 所 属 专 业 课 程 所 属 模 块 数 学 计 算 机 类 任 课 教 师 情 况 ( 人 数 ) 教 授 副 教 授 讲 师 助 教 3 附 表 深 圳 职 业 技 术 学 院 文 化 育 人 示 范 课 程 建 设 项 目 申 请 书 课 程 名 称 工 程 应 用 数 学 ( 计 算 机 类 ) 课 程 性 质 课 程 负 责 人 所 属 专 业 所 属 部 门 基 础 课 郑 红 数 学 工 业 中 心 填 表 日 期 2015-12-28 深 圳 职 业 技 术 学 院 制 二 一 五 年 十 二 月 1 一 课 程 基 本

More information

untitled

untitled 1-1 1-2 1-3 1-4 1-5 1-6 1-7 1-8 1-1-1 C int main(void){ int x,y,z; int sum=0; double avg=0.0; scanf("%d",&x) ; scanf("%d",&y) ; scanf("%d",&z) ; sum=x+y+z ; avg=sum/3.0; printf("%f\n",avg); system("pause");

More information

CHAPTER VC#

CHAPTER VC# 1. 2. 3. 4. CHAPTER 2-1 2-2 2-3 2-4 VC# 2-5 2-6 2-7 2-8 Visual C# 2008 2-1 Visual C# 0~100 (-32768~+32767) 2 4 VC# (Overflow) 2-1 2-2 2-1 2-1.1 2-1 1 10 10!(1 10) 2-3 Visual C# 2008 10! 32767 short( )

More information

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

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

More information

新・解きながら学ぶJava

新・解きながら学ぶJava 481! 41, 74!= 40, 270 " 4 % 23, 25 %% 121 %c 425 %d 121 %o 121 %x 121 & 199 && 48 ' 81, 425 ( ) 14, 17 ( ) 128 ( ) 183 * 23 */ 3, 390 ++ 79 ++ 80 += 93 + 22 + 23 + 279 + 14 + 124 + 7, 148, 16 -- 79 --

More information

C/C++程序设计 - 字符串与格式化输入/输出

C/C++程序设计 - 字符串与格式化输入/输出 C/C++ / Table of contents 1. 2. 3. 4. 1 i # include # include // density of human body : 1. 04 e3 kg / m ^3 # define DENSITY 1. 04 e3 int main ( void ) { float weight, volume ; int

More information

1 2 5.2.................................... 13 5.3....................................... 14 5.4............................... 15 6 Maxima 17 6.1....

1 2 5.2.................................... 13 5.3....................................... 14 5.4............................... 15 6 Maxima 17 6.1.... Maxima dbzhang 1 2 2 3 2.1 Maxima..................................... 3 2.2......................................... 4 2.3 Maxima........................................ 4 2.4........................................

More information

目次 CONTENTS 2 1 乘法公式與多項式 二次方根與畢氏定理 因式分解 一元二次方程式

目次 CONTENTS 2 1 乘法公式與多項式 二次方根與畢氏定理 因式分解 一元二次方程式 給同學的話 1 2 3 4 目次 CONTENTS 2 1 乘法公式與多項式 1-1 3 1-2 7 1-3 11 1 16 2 二次方根與畢氏定理 2-1 20 2-2 24 2-3 29 2 33 3 因式分解 3-1 37 3-2 41 3-3 45 3 49 4 一元二次方程式 4-1 53 4-2 57 4-3 61 4 65 3 1-1 乘法公式 本節性質與公式摘要 1 分配律 : ddd

More information

穨怎樣用電腦打出一分物理試題.PDF

穨怎樣用電腦打出一分物理試題.PDF 1 Microsoft Word 1. 2. 3. 88 g = 9.8 / 2 ( ) 1 5 4 20 4 1 ( ) 2 1. ( ) A B C D E (A) A (B) B (C) C (D) D (E) E 2. W N F N N F W (A) W (D) F N N F W (B) F W (E) N W (C) F 3. (1) ( ) (A) (B) (C) (D) (E)

More information

PTS7_Manual.PDF

PTS7_Manual.PDF User Manual Soliton Technologies CO., LTD www.soliton.com.tw - PCI V2.2. - PCI 32-bit / 33MHz * 2 - Zero Skew CLK Signal Generator. - (each Slot). -. - PCI. - Hot-Swap - DOS, Windows 98/2000/XP, Linux

More information

Microsoft Word - matlab80问.doc

Microsoft Word - matlab80问.doc M ATLAB 8 问 /9 一. 入 门 篇 MATLAB 有 哪 些 主 要 功 能? 初 学 者 应 如 何 利 用 这 一 数 学 软 件 去 解 决 自 己 的 问 题? 要 解 决 这 些 问 题, 应 该 尽 快 熟 悉 一 些 常 用 命 令, 了 解 它 们 的 功 能 和 使 用 格 式.MATLAB 的 特 点 是 什 么? MATLAB 是 Matrix Laboratory

More information

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information

第02章 常用统计图的绘制.doc

第02章  常用统计图的绘制.doc 2. Excel. 2002.9 http://statdtedm.6to23.com yuchua@163.com Excel 19 Excel Excel 97Excel 2000Excel 2002 14 27 20 Excel 2.1 2-1 1 Excel X XY X Y Y Z 2.2 Excel 1 Excel 7 2-2 2-2 7 0 2 2-3 7 2 X Y 7 2-3 3

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

30 ml polystyrene 4 mm ph 0.1 mg blender M -cm D. pulex D. magna 20 L 2 20

30 ml polystyrene 4 mm ph 0.1 mg blender M -cm D. pulex D. magna 20 L 2 20 102 8 13 1020069337 102 10 15 NIEA B901.14B Daphnia 48 lethal concentration 50%, LC 50 acute toxic unit, TU a Daphnia pulex Daphnia magna 25 2 2 L 1 20 30 ml polystyrene 4 mm ph 0.1 mg blender 1. 1 2.

More information

( ) ( ) ( ) S = { s 0, s 1, s 2,..., s M 1 } (1.1-1) M = S (1.1-2) a a, a,..., a,... (1.1-3) 0, 1 2 t p = p s ) (1.1-4) i ( i M 1 pi i= 0 = 1 (1.1-5) M 1 1 H ( S) = p log i (1.1-6) i pi M 1 i= 0 L = p

More information

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 - Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 Power Supplies, Information Technology Equipment Including Electrical Business Equipment - Component

More information

zt

zt ! " " " " " " " " " " !" %$$#! " "& ((! "!"#!"!" #!#$ "#$!$ "$!"##!"$!!"#!"!" % #$%" % # "% &!!!& ()*+,,-!& ()*+,,-*! "!,-!,-* "!)&*+,,-!)&*+,,-* "&(!$%!"! &!& ()&0,;!/) (&-:A 2-1,;!/) +2(192>*.) /0-1

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

ebook39-5

ebook39-5 5 3 last-in-first-out, LIFO 3-1 L i n e a r L i s t 3-8 C h a i n 3 3. 8. 3 C + + 5.1 [ ] s t a c k t o p b o t t o m 5-1a 5-1a E D 5-1b 5-1b E E 5-1a 5-1b 5-1c E t o p D t o p D C C B B B t o p A b o

More information

電流變液避震器懸吊系統之分析本文.doc

電流變液避震器懸吊系統之分析本文.doc : : 2902077 2902115 2902083 2902102 1 Matlab Simulink HyPneu Matlab Simulink HyPneu 2 ... i... ii... 1... 3 2-1... 3 2-2... 4 2-3... 5... 8... 10 4-1 Simulink... 10 4-2 HyPneu... 19 Matlab-Simulink HyPneu...

More information

94 (( )) 1 2 3 4 5 7 9 11 12 13 14 17 19 20 21 22 23 24 25 26 27 28 29 30 32 34 ( ) () (/ ) (/ ) (/ 100) 256 5,034 209,647 710,954 360,925 350,029 4,047.66 3.39 103.11 256 5,034 214,574 717,811 363,149

More information

四川省普通高等学校

四川省普通高等学校 四 川 省 普 通 高 等 学 校 计 算 机 应 用 知 识 和 能 力 等 级 考 试 考 试 大 纲 (2013 年 试 行 版 ) 四 川 省 教 育 厅 计 算 机 等 级 考 试 中 心 2013 年 1 月 目 录 一 级 考 试 大 纲 1 二 级 考 试 大 纲 6 程 序 设 计 公 共 基 础 知 识 6 BASIC 语 言 程 序 设 计 (Visual Basic) 9

More information

<4D6963726F736F667420506F776572506F696E74202D203130352020A451A447A67EB0EAB1D0A74BB8D5A44ABEC7B8A8C249A4C0AA52BB50A7D3C440BFEFB6F1B5A6B2A4205BACDBAE65BCD2A6A15D>

<4D6963726F736F667420506F776572506F696E74202D203130352020A451A447A67EB0EAB1D0A74BB8D5A44ABEC7B8A8C249A4C0AA52BB50A7D3C440BFEFB6F1B5A6B2A4205BACDBAE65BCD2A6A15D> 免 試 入 學 落 點 分 析 與 志 願 選 填 策 略 臺 北 市 立 士 林 高 商 校 長 曾 騰 瀧 簡 報 大 綱 教 育 現 況 與 人 才 培 育 入 學 管 道 介 紹 免 試 入 學 優 先 免 試 入 學 特 色 招 生 其 他 生 涯 發 展 與 適 性 選 擇 相 關 資 源 網 站 2 教 育 現 況 與 人 才 培 育 內 政 部 統 計 臺 灣 地 區 人 口 數 千

More information

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit 6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C51 6.1 C51 6.1.1 C51 C51 ANSI C MCS-51 C51 ANSI C C51 6.1 6.1 C51 bit Byte bit sbit 1 0 1 unsigned char 8 1 0 255 Signed char 8 11 128

More information

ebook73-29

ebook73-29 29 S C R I P T R S C R I P T D E L AY A u t o C A D 29.1 A u t o C A D script files( ) A u t o C A D, N o t e p a d A u t o C A D E D I T A C A D. P G P E D I T. S C R P L O T 1. S C R A u t o C A D S

More information

untitled

untitled 不 料 料 例 : ( 料 ) 串 度 8 年 數 串 度 4 串 度 數 數 9- ( ) 利 數 struct { ; ; 數 struct 數 ; 9-2 數 利 數 C struct 數 ; C++ 數 ; struct 省略 9-3 例 ( 料 例 ) struct people{ char name[]; int age; char address[4]; char phone[]; int

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

Progress Report of BESIII Slow Control Software Development

Progress Report of BESIII Slow Control Software Development BESIII 慢控制系统高压和 VME 监控 系统的设计和实现 陈锡辉 BESIII 慢控制组 2006-4-27 Outline Design and implementation of HV system Features Implementation Brief introduction to VME system Features Implementation of a demo Tasks

More information

MATLAB介紹

MATLAB介紹 MATLAB 2008a GUIDE GUIDE GUIDE Graphic User Interface Design Environment Graphical User Interface GUI GUIDE 令 拉 見 GUIDE 不 GUI GUI 行 率 GUIDE MATLAB 7.x GUIDE 令 guide GUIDE GUIDE Create New GUI Blank GUI

More information

( Version 0.4 ) 1

( Version 0.4 ) 1 ( Version 0.4 ) 1 3 3.... 3 3 5.... 9 10 12 Entities-Relationship Model. 13 14 15.. 17 2 ( ) version 0.3 Int TextVarchar byte byte byte 3 Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate

More information

《米开朗琪罗传》

《米开朗琪罗传》 ! " # ! """"""""""""""""""" """"""""""""""""" """""""""""""""" $% """"""""""""" &# """"""""""""""" %# """"""""""""""" # """""""""""""""!$% """""""""""""""!&!! # $$$$$$$$$$$$$$$$$$ $$$$$$$$$!"#!%& (! "

More information

Microsoft Word - 武術-定稿.doc

Microsoft Word - 武術-定稿.doc 目 錄 第 一 章 緒 論 1 1-1 計 畫 緣 起 與 目 的 1 1-2 計 畫 團 隊 組 織 架 構 2 第 二 章 工 作 執 行 概 況 3 2-1 工 作 內 容 3 2-2 研 究 流 程 4 2-3 研 究 方 法 5 2-4 計 畫 執 行 時 程 表 6 第 三 章 文 獻 回 顧 7 3-1 文 獻 探 討 與 分 析 8 3-2 小 結 11 第 四 章 田 野 調 查

More information

Microsoft Word - linux命令及建议.doc

Microsoft Word - linux命令及建议.doc Linux 操 作 系 统 命 令 集 1 基 本 命 令 查 看 系 统 信 息 : uname -a 修 改 密 码 : passwd 退 出 : logout(exit) 获 取 帮 助 : man commands 2 文 件 和 目 录 命 令 显 示 当 前 工 作 目 录 : pwd 改 变 所 在 目 录 : cd cd - 切 换 到 上 一 次 使 用 的 目 录 cd 切 换

More information

lan03_yen

lan03_yen IEEE 8. LLC Logical Link Control ll rights reserved. No part of this publication and file may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical,

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

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 177 [P179] (1) - [P181] [P182] (2) - for [P183] (3) - switch [P184] [P187] [P189] [P194] 178 [ ]; : : int var; : int var[3]; var 2293620 var[0] var[1] 2293620

More information

TPM BIOS Infineon TPM Smart TPM Infineon TPM Smart TPM TPM Smart TPM TPM Advanced Mode...8

TPM BIOS Infineon TPM Smart TPM Infineon TPM Smart TPM TPM Smart TPM TPM Advanced Mode...8 Smart TPM Rev. 1001 Smart TPM Ultra TPM Smart TPM TPM...3 1. BIOS... 3 2. Infineon TPM Smart TPM... 4 2.1. Infineon TPM...4 2.2. Smart TPM...4 3. TPM... 5 3.1. Smart TPM TPM...5 3.2. Advanced Mode...8

More information

Microsoft Word - ACG chapter00c-3ed.docx

Microsoft Word - ACG chapter00c-3ed.docx Python 好好玩, 趣學電玩遊戲程式設計 Python Python BASIC Java JavaScript PHP C++ BASIC Python Python Python Xbox PlayStation Nintendo - 2 - 簡介 : 互動式 Python Shell : 編寫程式 Python File editor : 猜數字 : 腦筋急轉彎 : 龍域 ( ) : 使用

More information