Microsoft Word - 1 刘洪磊_new_.doc

Size: px
Start display at page:

Download "Microsoft Word - 1 刘洪磊_new_.doc"

Transcription

1 ISSN CODEN JKYTA8 Journal of Frontiers of Computer Science and Technology /2011/05(09) Tel: DOI: /j.issn * 刘洪磊, 杨晓春 +, 王斌, 金蓉, Approximate Substring Query Algorithms Supporting Local Optimal Matching * LIU Honglei, YANG Xiaochun +, WANG Bin, JIN Rong College of Information Science and Engineering, Northeastern University, Shenyang , China + Corresponding author: yangxc@mail.neu.edu.cn LIU Honglei, YANG Xiaochun, WANG Bin, et al. Approximate substring query algorithms supporting local optimal matching. Journal of Frontiers of Computer Science and Technology, 2011, 5(9): Abstract: The algorithms of approximate string query based on edit distance have usually a given threshold k, and report those strings whose edit distances with the query are not bigger than k. However, when talking about approximate substring query, many answers got in this way have overlap, thus meaningless. So this paper proposes a concept of local optimal matching only computing those answers which are both not higher than k and local optimal, thus eliminating the overlapped answers and cutting the time cost. It also presents a definition of approximate substring query supporting local optimal matching along with a query algorithm based on gram index. Moreover, it analyzes the generality of the matching process, and studies the methods of filtering and limiting the boundary based on local optimal matching. Finally, it proposes an algorithm of local optimal approximate substring query with filtering, so that the efficiency of matching is promoted. Key words: substring query; fuzzy query; gram index; edit distance 基于编辑距离的字符串近似查询算法一般是先给定阈值 k, 然后计算那些与查询串的编辑距离小于或等于 k 的结果 但是对于近似子串查询, 结果中有很多是交叠的, 并且是无意义的, 于是提出了一种局 *The National Natural Science Foundation of China under Grant No , , ( ); the Fundamental Research Funds for the Central Universities under Grant No. N , N , N ( ). Received , Accepted

2 770 Journal of Frontiers of Computer Science and Technology 2011, 5(9) 部最优化匹配的概念, 只计算那些符合阈值条件, 并且是局部最优的结果, 这样不仅避免了结果的交叠, 而且极大节省了时间开销 给出了支持局部最优化匹配的近似子串查询的定义, 相应提出了一种基于 gram 索引的局部最优化近似子串查询算法, 分析了子串近似匹配过程中的规律, 研究了基于局部最优化匹配的边界限定和过滤策略, 给出了一种过滤优化的局部最优化近似子串查询算法, 提高了查询效率 子串查询 ; 模糊查询 ; gram 索引 ; 编辑距离 A TP ,,, DNA Internet,, Levenshtein 1965 (edit distance, Levenshtein distance) [1], Sankoff Kruskal 1983 Hamming distance [2], Das 1997 Episode distance [3], Needleman Wunsch 1970 longest common subsequence distance [4],, k, k,, 1 1 T= dynamicprogramming P= progrem, T P, k=2, T progr progra program programm P, P 2,,,,, program, T P, T P :, Web,, : (1),, (2) gram (3),, (4) gram, (5), : 2 ; 3 ; 4 gram ; 5, ; 6 ; 7

3 : 771 ; 8, 2,, Knuth [5] Knuth-Morris-Pratt Boyer Moore [6] Boyer-Moore ; [7] gram, [8],, DNA, gram gram, program 2-gram {pr,ro,og,gr,ra,am} [9 12] gram [10] [11 12] gram, VGRAM(variable-length grams) gram, VGRAM gram,, [13], [14], [7] gram, gram, [15] BLAST(basic local alignment search tool) 3 3.1, 1( [1] ),, 2 2 s 1 = program s 2 = progrem, s 2 s 1 e a, ed(s 1,s 2 )=1 x y, x[1,i] y[1,j] x y i j x y C, C i,j x[1,i] y[1,j] x[1,i] i, C i,0 =i, C 0,j =j : C i, j C x = y = 1 + min( C, C, C ) x y i 1, j 1 i j i 1, j i, j 1 i 1, j 1 i j ed(x,y)=c x, y C i,j : x i =y j,, C i 1,j 1 ; x i y j,, 2( ) 3 3 T= dynamicprogramming, P= progrem, P T 12, P T 14 m 1, P T program, x=p, y=t, T

4 772 Journal of Frontiers of Computer Science and Technology 2011, 5(9) C i,j P[1,i] T T j, Ci, j min ed( P[1, i], T[ k, j]) = k j C 0,j =0, 1 3 T P P T program 1,, Fig.2 The result of approximate substring query supporting local optimal matching 2 Fig.1 The matrix for calculating edit distance 1 3.2, m i T i P, 1, k, m i k, 1 1, k=2, T progr progra program programm, program, 3 ( ) T P, R : R T, T R R P, R P T 2 1, 4( ) T P, R, R P k, R 4 2, k=2, 4,,, program,, 4 gram 4, 3.1 T,,, O(mn), m n P T

5 : 773,, Naïve, gram, [9,16] gram gram gram,, gram q-gram q, k, gram,, gram q k program 2-gram {pr,ro,og,gr,ra,am}, progrem 2-gram {pr,ro,og,gr,re,em}, 4 gram s 1 s 2, ed(s 1,s 2 ) k, s 1 s 2 k, max{ s 1, s 2 }+1 (k+1) q q-gram R={r 1,r 2,,r n }, ed(p,r i ) k, 1 k, r i P +k r 1 ed(p,r i ) k, r 1 P k, k r 1 P, k, k 2 r i P +1 (k+1) q q-gram P, q-gram P +1 q k, k q gram, k, P +1 (k+1) q q-gram 5 5 T= dynamicprogramming, P= progrem, k=2, q=2, 2, P 2 2-gram gram, gram, gram, :, gram 4.2, T,, 1, P +k, P +k, 2, P gram, gram, 5(gram ) P gram T gram, P T 3, gram P g p, T g t,, gram g end : gend = gt+ P gp Fig.3 Gram base positions and candidate regions to verify 3 gram 6 (gram ) gram, gram, gram

6 774 Journal of Frontiers of Computer Science and Technology 2011, 5(9) 3, k,, gram, gram i, max( g + q 1, g k) i g + k t end 1 P gram T, 2 gram,, P +k gram, P 2 1, P +k 1,, 4.3 1, gram (gram-based local optimal approximate substring query algorithm, GASQ) end 7. for (each pos in FR){ 8. count=count(pos); // pos 9. if (count is greater than lowerbound){ 10. region=[pos P k+1,pos]; // 11. Verify(region); // Naïve 12. }// if 13. }// for 14. }// while 6 4, P= AGTC, T= GAAGGTCTCA, k=1, gram 1 P gram,, ; gram, gram, AG T 3, P 1 gram 6; gram,, gram 1, , 5 GASQ : P gram, gram ; gram gram T, gram gram, gram ; gram,,, 5,, 1 gram : P, T, gram G, k : 1. P gram 2. G L 3. L gram L 4. while ( L is not empty){ 5. smallest=mergheap(l ); // 6. FR=Fuzzy(smallest); //gram Fig.4 The flow of the algorithm 4 5 6,, P k 4,,,

7 : 775 LOB(local optimal boundary constraint) LOF(local optimal filtering), 5.1 4, 2, i, m i < m i 1 m i m i+1 T i, 2,, i 1 i,, T i P P k, 3 T i, T i T i : T P[ P k, P ] i 2, 3 2 5, T i, 3, T i P j, M (mismatch zone),,, M, i, M 4 i, 5 M T P, Ti [ + 1, i+ P j] Pj [ + 1, P ] = 3 4 T P k, M P P,, M 7 6, , 5 G k, 4, 6 T C, 5 Σ, Σ, P k Σ, 毎,,,,, ;,,,,, M,, 2 Fig.5 The matching process of extreme value point 5 : i, MTable : 1. Σ ETable; 2. Q; 3. while (T i exists in ETable){ 4. Q.pop();

8 776 Journal of Frontiers of Computer Science and Technology 2011, 5(9) 5. ETable ; 6. }// while 7. MTable T i C; 8. C ETable ; 9. Q.push(T i ); 10. if (length of Q is greater than M ){ 11. pos=q.front(); 12. pos region; 13. return region; 14. }// if P +k, 4, 6, R, 3 R P j, 5, ed(r,p) M, M ed(r,p) k, ed(r,p[1,j]) k M 1 R P +k 2 M, 5 P + k 2 M, i, P +k 2 M 1 8 6, 7, C, M=0, P +k 1, 4 6 gram, (gram-based local optimal approximate substring query algorithm with filtering, FGASQ ) FGASQ GASQ,, 3 : P, T, gram G, k : 1. GASQ IsEx=Filter(pos); // 11. if (IsEx is true){ // 12. region=[pos P k+2 M +1,pos]; 13. Verify(region);// Naïve 14. }// if GASQ FGASQ 6, 4,, 6 7 8, 5 6, 4 Fig.6 The difference between FGASQ and GASQ 6 FGASQ GASQ 7 : (1) Ubuntu(Linux) 10.04; (2) Virtualbox, Pentium Dual-Core CPU E5200@2.5GHz, 1 GB RAM DNA (10M) T, T 150 P 100 P

9 : 777 7( ) Naïve, : 被验证的区域大小的总和验证区域比例 = 被查询长串的长度, 7.1 GASQ FGASQ, 7,,, FGASQ GASQ, 25%, 8 7, gram q,, q, gram Fig.8 Comparison between GASQ and FGASQ when P =150 and q=13 8 GASQ FGASQ P =150 q=13 Fig.7 Comparison between GASQ and FGASQ when P =150 and q=9 7 GASQ FGASQ P =150 q=9 7.2 q gram q, q GASQ FGASQ

10 778 Journal of Frontiers of Computer Science and Technology 2011, 5(9) 9, q, q P gram,,, q,, 9(a) k=9, q=13, 9(b) q=13, q=13, gram, Fig Effects of different q on FGASQ when P =150 FGASQ P =150 q 8 Fig.9 Effects of different q on GASQ when P =150 9 GASQ P =150 q 10 9, 9, FGASQ GASQ,, gram,, gram,,,

11 : 779 References: [1] Levenshtein V I. Binary codes capable of correcting spurious insertions and deletions of ones[j]. Problems of Information Transmission, 1965, 1(1): [2] Sankoff D, Kruskal J. Time warps, string edits, and macromolecules: the theory and practice of sequence comparison[m]. Reading, UK: Addison-Wesley Publication, [3] Das G, Fleisher R, Gasieniek L, et al. Episode matching[c]// LNCS 1264: Proceedings of the 8th Annual Symposium on Combinatorial Pattern Matching (CPM 97), Aarhus, Denmark, June 30-July 2, [S.l.]: Springer, 1997: [4] Needleman S, Wunsch C. A general method applicable to the search for similarities in the amino acid sequences of two proteins[j]. Journal of Molecular Biology, 1970, 48(3): [5] Knuth D E, Morris J H, Pratt V R. Fast pattern matching in strings[j]. SIAM Journal on Computing, 1977, 6(2): [6] Boyer R S, Moore J S. A fast string searching algorithm[j]. Communications of the ACM, 1977, 20(10): [7] Kim Y, Woo K G, Park H, et al. Efficient processing of substring match queries with inverted q-gram indexes[c]// Proceedings of the IEEE 26th International Conference on Data Engineering (ICDE 10). Washington, DC, USA: IEEE Computer Society, 2010: [8] Navarro G. A guided tour to approximate string matching[j]. ACM Computing Surveys, 2001, 33(1): [9] Kim M S, Whang K Y, Lee J G, et al. n-gram/2l: a space and time efficient two-level n-gram inverted index structure[c]//proceedings of the 31st International Conference on Very Large Data Bases (VLDB 05), 2005: [10] Zobel J, Moffat A. Inverted files for text search engines[j]. ACM Computing Surveys, 2006, 38(2). [11] Yang Xiaochun, Wang Bin, Li Chen. Cost-based variablelength-gram selection for string collections to support approximate queries efficiently[c]//proceedings of the 2008 ACM SIGMOD International Conference on Management of Data (SIGMOD 08). New York, NY, USA: ACM, 2008: [12] Li Chen, Wang Bin, Yang Xiaochun. VGRAM: improving performance of approximate queries on string collections using variable length grams[c]//proceedings of the 33rd International Conference on Very Large Data Bases (VLDB 07), 2007: [13] Li Chen, Lu Jiaheng, Lu Yiming. Efficient merging and filtering algorithms for approximate string searches[c]// Proceedings of the IEEE 24th International Conference on Data Engineering (ICDE 08). Washington, DC, USA: IEEE Computer Society, 2008: [14] Krauthgamer R, Mehta A, Raman V, et al. Greedy list intersection[c]//proceedings of the IEEE 24th International Conference on Data Engineering (ICDE 08). Washington, DC, USA: IEEE Computer Society, 2008: [15] Altschul S F, Gish W, Miller W, et al. Basic local alignment search tool[j]. Journal of Molecular Biology, 1990, 215(3): [16] Behm A, Ji Shengyue, Li Chen, et al. Space-constrained gram-based indexing for efficient approximate string search[c]//proceedings of the IEEE 25th International Conference on Data Engineering (ICDE 09). Washington, DC, USA: IEEE Computer Society, 2009: LIU Honglei was born in He is a master candidate at Northeastern University. His research interests include approximate string query and bioinformatics. (1988 ),,,,,

12 780 Journal of Frontiers of Computer Science and Technology 2011, 5(9) YANG Xiaochun was born in She received her Ph.D. degree in Computer Software and Theory from Northeastern University in Now she is a professor and doctoral supervisor at Northeastern University, and the senior member of CCF. Her research interests include theory and technology of database, data quality analysis and data privacy, etc. (1973 ),,, 2001,, CCF,,, WANG Bin was born in He is a lecturer at Northeastern University. His research interests include distributed database management and system structure. (1972 ),,,,, JIN Rong was born in She is a master candidate at Northeastern University. Her research interest is approximate text search. (1988 ),,,, 2012, 16, 96, 30, , ( ) , 16, 248, , 38.5, , ( ) : (010)

7 2 2012 26 (1) ( ) : (3), (12) (7) (10)

7 2 2012 26 (1) ( ) : (3), (12) (7) (10) 1 2 3.4 1* 3* (Case-based reasoning) (15) 2012 7(2) 25-45 1 2 3 4 168 (05)2720411 ~ 33110, : naiwei@cs.ccu.edu.tw (05)2648000-5542 :yehlinlo@gmail.com 7 2 2012 25 7 2 2012 26 (1) ( ) : (3), (12) (7) (10)

More information

SVM OA 1 SVM MLP Tab 1 1 Drug feature data quantization table

SVM OA 1 SVM MLP Tab 1 1 Drug feature data quantization table 38 2 2010 4 Journal of Fuzhou University Natural Science Vol 38 No 2 Apr 2010 1000-2243 2010 02-0213 - 06 MLP SVM 1 1 2 1 350108 2 350108 MIP SVM OA MLP - SVM TP391 72 A Research of dialectical classification

More information

13-4-Cover-1

13-4-Cover-1 106 13 4 301-323 302 2009 2007 2009 2007 Dewey 1960 1970 1964 1967 303 1994 2008 2007 2008 2001 2003 2006 2007 2007 7 2013 2007 2009 2009 2007 2009 2012 Kendall 1990 Jacoby 1996 Sigmon 1996 1 2 3 20062000

More information

理 成 可 做 關 聯 分 析 的 格 式, 再 應 用 統 計 統 計 計 算 軟 體 R (R Core Team, 2013) 中 的 延 伸 套 件 arules (Hahsler, Gruen, and Hornik, 2005; Hahsler, Buchta, Gruen, and H

理 成 可 做 關 聯 分 析 的 格 式, 再 應 用 統 計 統 計 計 算 軟 體 R (R Core Team, 2013) 中 的 延 伸 套 件 arules (Hahsler, Gruen, and Hornik, 2005; Hahsler, Buchta, Gruen, and H 連 鎖 輕 食 店 之 產 品 關 聯 分 析 - 以 茗 人 為 例 Association Analysis of Deli Chain Example of MingZen 摘 要 所 謂 關 聯 分 析, 就 是 從 商 店 銷 售 交 易 資 料 庫 中, 找 出 項 目 之 間 的 關 聯 性, 並 探 勘 出 在 資 料 間 具 有 相 關 性 的 隱 藏 規 則 有 趣 的 是, 商

More information

2 3. 1,,,.,., CAD,,,. : 1) :, 1,,. ; 2) :,, ; 3) :,; 4) : Fig. 1 Flowchart of generation and application of 3D2digital2building 2 :.. 3 : 1) :,

2 3. 1,,,.,., CAD,,,. : 1) :, 1,,. ; 2) :,, ; 3) :,; 4) : Fig. 1 Flowchart of generation and application of 3D2digital2building 2 :.. 3 : 1) :, 3 1 Vol. 3. 1 2008 2 CAA I Transactions on Intelligent Systems Feb. 2008, (,210093) :.,; 3., 3. :; ; ; ; : TP391 :A :167324785 (2008) 0120001208 A system f or automatic generation of 3D building models

More information

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 新 媒 体 环 境 下 公 务 员 在 线 培 训 模 式 研 究 作 者 姓 名 : 学 科 专 业 : 导 师 姓 名 : 完 成 时 间 : 潘 琳 数 字 媒 体 周 荣 庭 教 授 二 一 二 年 五 月 University of Science and Technology of China A dissertation for

More information

,,.,, : 1),,,,, 2),,,,, 3),,,,,,,,,, [6].,,, ( ),, [9], : 1), 2),,,,, 3),,, 2.,, [10].,,,,,,,,, [11]. 2.1,, [12],, ;, ; Fig. 1 1 Granular hier

,,.,, : 1),,,,, 2),,,,, 3),,,,,,,,,, [6].,,, ( ),, [9], : 1), 2),,,,, 3),,, 2.,, [10].,,,,,,,,, [11]. 2.1,, [12],, ;, ; Fig. 1 1 Granular hier 36 7 Vol. 36, No. 7 2010 7 ACTA AUTOMATICA SINICA July, 2010 1, 2 1, 2, 3 1, 2,,,,,,, DOI,,, 10.3724/SP.J.1004.2010.00923 Distributed Simulation System Hierarchical Design Model Based on Quotient Space

More information

中文模板

中文模板 软 件 学 报 doi: 10.13328/j.cnki.jos.004932 中 文 公 众 事 件 信 息 熵 计 算 方 法 靳 锐 +, 张 宏 莉, 张 玥, 王 星 ( 哈 尔 滨 工 业 大 学 计 算 机 科 学 与 技 术 学 院, 哈 尔 滨 150001) Calculation Method of Chinese Public Event Information Entropy

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

Dan Buettner / /

Dan Buettner / / 39 1 2015 1 Vol. 39 No. 1 January 2015 74 Population Research 80 + /60 + 90 + 90 + 0 80 100028 Measuring and Comparing Population Longevity Level across the Regions of the World Lin Bao Abstract Appropriate

More information

Microsoft Word - 24217010311110028谢雯雯.doc

Microsoft Word - 24217010311110028谢雯雯.doc HUAZHONG AGRICULTURAL UNIVERSITY 硕 士 学 位 论 文 MASTER S DEGREE DISSERTATION 80 后 女 硕 士 生 择 偶 现 状 以 武 汉 市 七 所 高 校 为 例 POST-80S FEMALE POSTGRADUATE MATE SELECTION STATUS STUDY TAKE WUHAN SEVEN UNIVERSITIES

More information

4 115,,. : p { ( x ( t), y ( t) ) x R m, y R n, t = 1,2,, p} (1),, x ( t), y ( t),,: F : R m R n.,m, n, u.,, Sigmoid. :,f Sigmoid,f ( x) = ^y k ( t) =

4 115,,. : p { ( x ( t), y ( t) ) x R m, y R n, t = 1,2,, p} (1),, x ( t), y ( t),,: F : R m R n.,m, n, u.,, Sigmoid. :,f Sigmoid,f ( x) = ^y k ( t) = 2007 4 4 :100026788 (2007) 0420114206, (, 430074) :,,,,,,GIS.,,. : ; ; ; ; : TP391 ;P338 : A Development of Combinatorial Intelligentized Decision2Making Support System and Its Utilization in Runoff Forecasting

More information

第 02 期 1 医 疗 信 息 现 状 20% EMR Electronic Medical Record HIS HIS [1-2] 40 2011 张 肖 等 : 基 于 大 数 据 的 医 疗 健 康 创 新 应 用 2 大 数 据 环 境 下 医 疗 数 据 特 征 分 析 PC [3]

第 02 期 1 医 疗 信 息 现 状 20% EMR Electronic Medical Record HIS HIS [1-2] 40 2011 张 肖 等 : 基 于 大 数 据 的 医 疗 健 康 创 新 应 用 2 大 数 据 环 境 下 医 疗 数 据 特 征 分 析 PC [3] 电 子 科 学 技 术 电 第 02 子 科 卷 学 第 技 02 术 期 Electronic 2015 年 Science 3 月 & Technology Electronic Science & Technology Vol.02 No.02 Mar.2015 年 基 于 大 数 据 的 医 疗 健 康 创 新 应 用 张 肖, 杨 锦 洲, 王 志 勇 ( 中 国 联 通 研 究 院, 北

More information

Microsoft Word - 专论综述1.doc

Microsoft Word - 专论综述1.doc 1 基 于 协 同 过 滤 的 高 考 志 愿 推 荐 系 统 徐 兰 静, 李 珊, 严 钊 ( 南 京 航 空 航 天 大 学 经 济 与 管 理 学 院, 南 京 211100) 摘 要 : 近 年 来 信 息 过 载 问 题 的 出 现 使 得 个 性 化 推 荐 技 术 应 运 而 生, 其 中 协 同 过 滤 推 荐 技 术 通 过 在 用 户 和 信 息 之 间 建 立 联 系, 被

More information

标题

标题 第 19 卷 摇 第 4 期 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 模 式 识 别 与 人 工 智 能 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 Vol. 19 摇 No. 4 摇 006 年 8 月 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 PR & AI 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 Aug 摇 摇

More information

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前 东 北 大 学 中 荷 生 物 医 学 与 信 息 工 程 学 院 2016 年 度 生 物 医 学 与 信 息 工 程 论 坛 会 议 时 间 2016 年 6 月 8 日, 星 期 三,9:30 至 16:00 会 议 地 址 会 议 网 址 主 办 单 位 东 北 大 学 浑 南 校 区 沈 阳 市 浑 南 区 创 新 路 195 号 生 命 科 学 大 楼 B 座 619 报 告 厅 http://www.bmie.neu.edu.cn

More information

66 臺 中 教 育 大 學 學 報 : 人 文 藝 術 類 Abstract This study aimed to analyze the implementing outcomes of ability grouping practice for freshman English at a u

66 臺 中 教 育 大 學 學 報 : 人 文 藝 術 類 Abstract This study aimed to analyze the implementing outcomes of ability grouping practice for freshman English at a u 臺 中 教 育 大 學 學 報 : 人 文 藝 術 類 0 年,(),-0 65 私 立 科 技 大 學 四 技 大 一 新 生 英 文 能 力 分 級 教 學 成 效 分 析 An Analysis of the Implementing Outcomes of Ability Grouping of Freshman English in a University of Technology 溫

More information

untitled

untitled 19932005 1 1993-2005 The Urban Residential Housing System in Shanghai 1993-2005: the Marketization Process and Housing Affordability Jie Chen, Assistant Professor, Management School of Fudan University,

More information

穨423.PDF

穨423.PDF Chinese Journal of Science Education 2002,, 423-439 2002, 10(4), 423-439 1 2 1 1 1 2 90 8 10 91 4 9 91 8 22 ) NII 1995 7 14, 1999 1997 (Cooperative Remotely Accessible Learning CORAL) 424 (Collaborative

More information

Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug GPS,,, : km, 2. 51, , ; ; ; ; DOI: 10.

Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug GPS,,, : km, 2. 51, , ; ; ; ; DOI: 10. 22 4 2017 8 Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug. 2017 150080 GPS,,, : 27. 36 km, 2. 51, 110. 43, ; ; ; ; DOI: 10. 15938 /j. jhust. 2017. 04. 015 U469. 13 A 1007-2683

More information

1 引言

1 引言 P P 第 40 卷 Vol.40 第 7 期 No.7 计 算 机 工 程 Computer Engineering 014 年 7 月 July 014 开 发 研 究 与 工 程 应 用 文 章 编 号 :1000-348(014)07-081-05 文 献 标 识 码 :A 中 图 分 类 号 :TP391.41 摘 基 于 图 像 识 别 的 震 象 云 地 震 预 测 方 法 谢 庭,

More information

填 写 要 求 一 以 word 文 档 格 式 如 实 填 写 各 项 二 表 格 文 本 中 外 文 名 词 第 一 次 出 现 时, 要 写 清 全 称 和 缩 写, 再 次 出 现 时 可 以 使 用 缩 写 三 涉 密 内 容 不 填 写, 有 可 能 涉 密 和 不 宜 大 范 围 公

填 写 要 求 一 以 word 文 档 格 式 如 实 填 写 各 项 二 表 格 文 本 中 外 文 名 词 第 一 次 出 现 时, 要 写 清 全 称 和 缩 写, 再 次 出 现 时 可 以 使 用 缩 写 三 涉 密 内 容 不 填 写, 有 可 能 涉 密 和 不 宜 大 范 围 公 2013 年 度 上 海 高 校 市 级 精 品 课 程 申 报 表 ( 本 科 ) 学 校 名 称 东 华 大 学 课 程 名 称 计 算 机 系 统 与 网 络 技 术 课 程 类 型 理 论 课 ( 不 含 实 践 ) 理 论 课 ( 含 实 践 ) 实 验 ( 践 ) 课 所 属 一 级 学 科 名 称 所 属 二 级 学 科 名 称 课 程 负 责 人 申 报 日 期 工 科 计 算 机

More information

附3

附3 普 通 高 等 学 校 本 科 专 业 设 置 申 请 表 ( 备 案 专 业 适 用 ) 080910T 3-6 2 016 7 6 4884878 目 录 填 表 说 明 ⒈ ⒉ ⒊ ⒋ ⒌ 1. 普 通 高 等 学 校 增 设 本 科 专 业 基 本 情 况 表 080910T 3-6 1978 36 ( 1978) ( 2008) 2017 60 120 / S J ⒉ 学 校 基 本 情

More information

35 2 2011 3 Vol. 35 No. 2 March 2011 83 Population Research * 2 100872 Birth Interval between First and Second Child and Its Policy Implications Liu Shuang Zou Mingru Abstract Using data of international

More information

Microsoft Word - A201202-493_1329751213.doc

Microsoft Word - A201202-493_1329751213.doc 5 10 15 20 25 BP 神 经 网 络 在 中 国 创 业 板 企 业 成 长 性 预 测 研 究 ** 孙 静 稳, 刘 金 平 ( 中 国 矿 业 大 学 管 理 学 院, 江 苏 徐 州 221116) 摘 要 : 根 据 创 业 板 企 业 的 高 科 技 和 高 成 长 性 特 点, 成 为 金 融 证 券 市 场 热 门 关 注 的 对 象, 其 成 长 性 研 究 是 资 本

More information

标题

标题 第 33 卷 摇 第 9 期 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 014 年 9 月 情 摇 报 摇 杂 摇 志 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 摇 JOURNAL OF INTELLIGENCE Vol. 33 摇 No. 9 Sep. 摇 014 基 于 专 利 的 大 数 据 技 术 发 展 情 报 * 分 析 及 战 略 研 究 1 1 李 鹏 飞 摇 卢 摇

More information

M M. 20

M M. 20 37 1 Vol. 37 No.1 2 0 1 6 1 TSINGHUA JOURNAL OF EDUCATION Jan. 2 0 1 6 4. 0 100872 1. 0 2. 0 3. 0 4. 0 4. 0 4. 0 G640 A 1001-4519 2016 01-0006 - 10 DOI 10. 14138 /j. 1001-4519. 2016. 01. 000610 11-12 18

More information

Microsoft Word - 林文晟3.doc

Microsoft Word - 林文晟3.doc 台 灣 管 理 學 刊 第 8 卷 第 期,008 年 8 月 pp. 33-46 建 構 農 產 運 銷 物 流 中 心 評 選 模 式 決 策 之 研 究 林 文 晟 清 雲 科 技 大 學 企 業 管 理 系 助 理 教 授 梁 榮 輝 崇 右 技 術 學 院 企 業 管 理 系 教 授 崇 右 技 術 學 院 校 長 摘 要 台 灣 乃 以 農 立 國, 農 業 經 濟 在 台 灣 經 濟

More information

Vol. 15 No. 1 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Feb O21 A

Vol. 15 No. 1 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Feb O21 A 5 200 2 Vol 5 No JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Feb 200 2 2 50080 2 30024 O2 A 007-2683 200 0-0087- 05 A Goodness-of-fit Test Based on Empirical Likelihood and Application ZHOU

More information

United Nations ~ ~ % 2010

United Nations ~ ~ % 2010 42 3 2018 5 Vol. 42 No. 3 May 2018 38 Population Research 2014 60 3% ~ 4% 10% 60 +

More information

(Microsoft Word - \261M\256\327\272\353\302\262\263\370\247iEnd.doc)

(Microsoft Word - \261M\256\327\272\353\302\262\263\370\247iEnd.doc) 摘 要 長 榮 大 學 資 訊 管 理 學 系 畢 業 專 案 實 作 專 案 編 號 : 旅 遊 行 程 規 劃 - 以 台 南 市 為 例 Tour Scheduling for Tainan City CJU-IM- PRJ-096-029 執 行 期 間 : 95 年 2 月 13 日 至 96 年 1 月 20 日 陳 貽 隆 陳 繼 列 張 順 憶 練 哲 瑋 專 案 參 與 人 員 :

More information

Microsoft Word - 专论综述1.doc

Microsoft Word - 专论综述1.doc 2016 年 第 25 卷 第 期 http://www.c-s-a.org.cn 计 算 机 系 统 应 用 1 基 于 节 点 融 合 分 层 法 的 电 网 并 行 拓 扑 分 析 王 惠 中 1,2, 赵 燕 魏 1,2, 詹 克 非 1, 朱 宏 毅 1 ( 兰 州 理 工 大 学 电 气 工 程 与 信 息 工 程 学 院, 兰 州 730050) 2 ( 甘 肃 省 工 业 过 程 先

More information

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2 32 1 Vol. 32, No. 1 2014 2 PROGRESS IN ASTRONOMY Feb., 2014 doi: 10.3969/j.issn.1000-8349.2014.01.07 VLBI 1,2 1,2 (1. 200030 2. 200030) VLBI (Digital Baseband Convertor DBBC) CDAS (Chinese VLBI Data Acquisition

More information

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流 第 20 卷 第 3 期 2014 年 6 月 ( 自 然 科 学 版 ) JOURNAL OF SHANGHAI UNIVERSITY (NATURAL SCIENCE) Vol. 20 No. 3 June 2014 DOI: 10.3969/j.issn.1007-2861.2013.07.031 基 于 FLUENT 测 轨 道 交 通 隧 道 中 电 波 折 射 率 结 构 常 数 张 永

More information

在 培 养 职 前 卓 越 化 学 教 师 的 院 校, 会 编 一 本 过 去 称 作 化 学 教 学 论 实 验, 现 在 拟 为 卓 越 化 学 教 师 教 育 实 验 教 学 研 究 的 教 材 各 院 校 对 这 门 课 程 所 给 的 学 时 不 太 一 样, 但 都 是 围 绕 实 验

在 培 养 职 前 卓 越 化 学 教 师 的 院 校, 会 编 一 本 过 去 称 作 化 学 教 学 论 实 验, 现 在 拟 为 卓 越 化 学 教 师 教 育 实 验 教 学 研 究 的 教 材 各 院 校 对 这 门 课 程 所 给 的 学 时 不 太 一 样, 但 都 是 围 绕 实 验 doi: 10.3866/pku.DXHX201607011 卓 越 化 学 教 师 教 育 实 验 教 学 研 究 课 程 探 微 * 杨 承 印 汪 蒙 蒙 赵 洋 ( 陕 西 师 范 大 学 化 学 化 工 学 院, 西 安 710119) 摘 要 : 在 对 实 验 操 作 进 行 编 码 的 基 础 上 对 高 中 化 学 课 程 标 准 中 有 关 实 验 进 行 统 计 分 析, 以

More information

1.2 资 金 的 管 理 1.1 权 利 义 务 来 源 MOU 1.3 数 据 的 使 用 和 保 护 2 国 际 空 间 站 资 源 分 配 方 案 54

1.2 资 金 的 管 理 1.1 权 利 义 务 来 源 MOU 1.3 数 据 的 使 用 和 保 护 2 国 际 空 间 站 资 源 分 配 方 案 54 第 29 卷 第 12 期 全 球 科 技 经 济 瞭 望 Vol. 29 No. 12 2014 年 12 月 Global Science, Technology and Economy Outlook Dec. 2014 刘 阳 子 ( 中 国 科 学 技 术 信 息 研 究 所, 北 京 ) 摘 要 : 空 间 探 索 既 复 杂 艰 巨 又 耗 资 甚 大, 因 此, 世 界 各 国 无

More information

698 39,., [6].,,,, : 1) ; 2) ,, 14,, [7].,,,,, : 1) :,. 2) :,,, 3) :,,,., [8].,. 1.,,,, ,,,. : 1) :,, 2) :,, 200, s, ) :,.

698 39,., [6].,,,, : 1) ; 2) ,, 14,, [7].,,,,, : 1) :,. 2) :,,, 3) :,,,., [8].,. 1.,,,, ,,,. : 1) :,, 2) :,, 200, s, ) :,. 39 6 Vol. 39, No. 6 2013 6 ACTA AUTOMATICA SINICA June, 2013 1, 2,,,. DOI,,,., 2013, 39(6): 697 702 10.3724/SP.J.1004.2013.00697 Present Situation and Development Tendency of Aerospace Control Techniques

More information

~ ~

~ ~ * 40 4 2016 7 Vol. 40 No. 4 July 2016 35 Population Research 2014 1 2016 2016 9101. 0 40 49. 6% 2017 ~ 2021 1719. 5 160 ~ 470 100872 Accumulated Couples and Extra Births under the Universal Tw o-child

More information

Microsoft Word - 01李惠玲ok.doc

Microsoft Word - 01李惠玲ok.doc 康 寧 學 報 11:1-20(2009) 1 數 位 學 習 於 護 理 技 術 課 程 之 運 用 與 評 值 * 李 惠 玲 ** 高 清 華 *** 呂 莉 婷 摘 要 背 景 : 網 路 科 技 在 教 育 的 使 用 已 成 為 一 種 有 利 的 教 學 輔 助 工 具 網 路 教 學 的 特 性, 在 使 學 習 可 不 分 時 間 與 空 間 不 同 進 度 把 握 即 時 性 資

More information

輥輯訛 % 2010~ % Northwestern Journal of Ethnology 1. J., 1994, 3 14~ J., ~150.

輥輯訛 % 2010~ % Northwestern Journal of Ethnology 1. J., 1994, 3 14~ J., ~150. 1001-5558 2012 01-0029-11 G75 A 12 BGA070049 07JHQ006 1. 50 J., 1999, 5 46~54. 2. J. 1998, 2 3~24.. J. 2008, 6 2 3~42. N. W. Journal of Ethnology 2012 1 72 2012.No.1 Total No.72 12 34 56 78 910 輥輯訛 2009

More information

240 生 异 性 相 吸 的 异 性 效 应 [6] 虽 然, 心 理 学 基 础 研 [7-8] 究 已 经 证 实 存 在 异 性 相 吸 异 性 相 吸 是 否 存 在 于 名 字 认 知 识 别 尚 无 报 道 本 实 验 选 取 不 同 性 别 的 名 字 作 为 刺 激 材 料, 通

240 生 异 性 相 吸 的 异 性 效 应 [6] 虽 然, 心 理 学 基 础 研 [7-8] 究 已 经 证 实 存 在 异 性 相 吸 异 性 相 吸 是 否 存 在 于 名 字 认 知 识 别 尚 无 报 道 本 实 验 选 取 不 同 性 别 的 名 字 作 为 刺 激 材 料, 通 2011 年 Journal of Capital Medical University 4月 第2 期 Apr 2011 Vol 32 No 2 基础研究 doi: 10 3969 / j issn 1006-7795 2011 02 015 人脑识别不同性别名字反应时的差异研究 高迎霄 陈昭燃 * 张明霞 ( 首都医科大学神经生物系高级脑功能中心) 摘要 目的 探讨男女对不同性别名字认知加工速度是否存在差异

More information

XML SOAP DOM B2B B/S B2B B2B XML SOAP

XML SOAP DOM B2B B/S B2B B2B XML SOAP 10384 9831010 U D C B2B 2 0 0 1 4 2 0 0 1 5 2 0 0 1 2001 4 XML SOAP DOM B2B B/S B2B B2B XML SOAP ABSTRACT Based on the research of Supply Chain Management theory and E-Commerce theory, especially in Business

More information

Microsoft Word - 793-797 tb20150504赵宏宇s-高校教改纵横.doc

Microsoft Word - 793-797 tb20150504赵宏宇s-高校教改纵横.doc 微 生 物 学 通 报 Microbiology China tongbao@im.ac.cn Apr. 20, 2016, 43(4): 793 797 http://journals.im.ac.cn/wswxtbcn DOI: 10.13344/j.microbiol.china.150504 高 校 教 改 纵 横 生 物 工 程 专 业 发 酵 课 程 群 建 设 探 索 * 赵 宏 宇

More information

Mechanical Science and Technology for Aerospace Engineering October Vol No. 10 Web SaaS B /S Web2. 0 Web2. 0 TP315 A

Mechanical Science and Technology for Aerospace Engineering October Vol No. 10 Web SaaS B /S Web2. 0 Web2. 0 TP315 A 2012 10 31 10 Mechanical Science and Technology for Aerospace Engineering October Vol. 31 2012 No. 10 Web2. 0 400030 SaaS B /S Web2. 0 Web2. 0 TP315 A 1003-8728 2012 10-1638-06 Design and Implementation

More information

1. 课 程 负 责 人 情 况 姓 名 蒋 效 宇 性 别 男 出 生 年 月 基 本 信 息 最 终 学 历 研 究 生 职 称 副 教 授 电 话 学 位 博 士 职 务 无 传 真 研 究 方 向 MIS 系 统 整 合 电 子

1. 课 程 负 责 人 情 况 姓 名 蒋 效 宇 性 别 男 出 生 年 月 基 本 信 息 最 终 学 历 研 究 生 职 称 副 教 授 电 话 学 位 博 士 职 务 无 传 真 研 究 方 向 MIS 系 统 整 合 电 子 北 京 服 装 学 院 精 品 课 程 建 设 立 项 申 报 表 课 程 名 称 管 理 信 息 系 统 所 属 部 门 商 学 院 课 程 类 型 理 论 课 ( 不 含 实 践 ) 理 论 课 ( 含 实 践 ) 实 验 ( 践 ) 课 所 属 一 级 学 科 名 称 所 属 二 级 学 科 名 称 课 程 负 责 人 管 理 科 学 与 工 程 管 理 信 息 系 统 蒋 效 宇 申 报 日

More information

Improving the Effectiveness of the Training of Civil Service by Applying Learning Science and Technology: The Case Study of the National Academy of Ci

Improving the Effectiveness of the Training of Civil Service by Applying Learning Science and Technology: The Case Study of the National Academy of Ci 善 用 學 習 科 技 提 升 公 務 人 員 培 訓 之 效 能 : 以 國 家 文 官 學 院 學 習 科 技 之 建 構 與 運 用 為 例 蔡 璧 煌 鍾 廣 翰 摘 要 公 務 人 員 的 素 質 代 表 一 國 國 力, 除 攸 關 國 家 施 政 外, 也 影 響 國 家 整 體 之 發 展, 因 此 如 何 善 用 學 習 科 技 協 助 公 務 人 員 培 訓 與 管 理, 未 來

More information

Microsoft Word - A201009-646.doc

Microsoft Word - A201009-646.doc # 中 国 网 络 游 戏 外 挂 问 题 现 状 分 析 * 兰 晓, 尹 杰 ( 中 国 传 媒 大 学 信 息 工 程 学 院 ) 摘 要 : 网 络 游 戏 外 挂 的 泛 滥 严 重 阻 碍 了 中 国 网 络 游 戏 产 业 的 正 常 发 展 本 文 给 出 了 网 络 游 戏 外 挂 的 定 义, 并 对 当 前 中 国 网 络 游 戏 存 在 的 安 全 问 题 进 行 了 分 析,

More information

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes 上 海 外 国 语 大 学 硕 士 学 位 论 文 对 外 汉 语 初 中 级 副 词 情 境 教 学 研 究 与 实 践 院 系 : 国 际 文 化 交 流 学 院 学 科 专 业 : 汉 语 国 际 教 育 姓 名 : 顾 妍 指 导 教 师 : 缪 俊 2016 年 5 月 Shanghai International Studies University THE STUDY AND PRACTICE

More information

Abstract The adult higher education is a vital part of the higher education. As an essential tache of selecting qualified students, the adult college entrance examination plays an important role in securing

More information

IT 36% Computer Science Teachers Association, CSTA K K-12 CSTA K-12 K-12 K-6 K6-9 K STEM STEM STEM

IT 36% Computer Science Teachers Association, CSTA K K-12 CSTA K-12 K-12 K-6 K6-9 K STEM STEM STEM 2017 4 357 GLOBAL EDUCATION Vol. 46 No4, 2017 K-12 2016 K-12 K-12 / 200062 / 200062 2015 8 2015 STEM STEM 1 Computer Science Association for Computing Machinery ACM Code Computer Science Teachers Association

More information

% GIS / / Fig. 1 Characteristics of flood disaster variation in suburbs of Shang

% GIS / / Fig. 1 Characteristics of flood disaster variation in suburbs of Shang 20 6 2011 12 JOURNAL OF NATURAL DISASTERS Vol. 20 No. 6 Dec. 2011 1004-4574 2011 06-0094 - 05 200062 1949-1990 1949 1977 0. 8 0. 03345 0. 01243 30 100 P426. 616 A Risk analysis of flood disaster in Shanghai

More information

<4D6963726F736F667420576F7264202D205F355FBDD7A16DA4E5A4DFC04AC073A16EA4A4AABAA175B74EB648A176BB50A175A4F1BFB3A176>

<4D6963726F736F667420576F7264202D205F355FBDD7A16DA4E5A4DFC04AC073A16EA4A4AABAA175B74EB648A176BB50A175A4F1BFB3A176> 東 吳 中 文 學 報 第 二 十 期 2010 年 11 月 頁 109-132 論 文 心 雕 龍 中 的 意 象 與 比 興 陳 秋 宏 提 要 本 文 以 文 心 雕 龍 中 的 神 思 物 色 比 興 等 篇 章 為 出 發 點, 藉 由 打 破 篇 章 侷 限 的 論 述, 試 圖 從 物 象 心 象 ( 文 字 ) 意 象 ( 語 言 文 字 層 面 ) 的 創 作 活 動 架 構,

More information

A Study of the Japanese Teacher Education Reform Szu-Wei Yang President of national Taichung University Sheng-Hsien Chen Doctor Candidate, Department

A Study of the Japanese Teacher Education Reform Szu-Wei Yang President of national Taichung University Sheng-Hsien Chen Doctor Candidate, Department 日 本 教 師 教 育 改 革 之 研 究 楊 思 偉 臺 教 育 大 校 長 陳 盛 賢 臺 灣 師 範 大 教 育 系 博 士 候 選 江 志 正 臺 教 育 大 教 育 系 副 教 授 摘 要 進 入 21 世 紀 的 今 日, 日 本 教 師 教 育 政 策 面 臨 最 重 大 的 挑 戰 而 其 主 要 理 由 不 僅 是 因 為 教 育 荒 廢 而 已, 更 因 為 在 高 度 經 濟

More information

Microsoft Word - 2015年第三期09

Microsoft Word - 2015年第三期09 第 32 卷 第 3 期 河 北 工 程 大 学 学 报 ( 社 会 科 学 版 ) Vol.32 No.3 2015 年 9 月 Journal of Hebei University of Engineering (Social Science Edition) Sept.2015 潍 坊 地 区 非 物 质 文 化 遗 产 要 素 研 究 刘 阳 ( 中 央 戏 剧 学 院 戏 剧 管 理 系,

More information

untitled

untitled 20 1 2010 10 Vol.20 Special 1 The Chinese Journal of Nonferrous Metals Oct. 2010 1004-0609(2010)S1-s0127-05 Ti-6Al-4V 1 2 2 (1. 710016 2., 710049) 500~1 000 20 Ti-6Al-4V(TC4) TC4 800 TC4 800 TC4 TC4 800

More information

,, :, ;,,?, : (1), ; (2),,,, ; (3),,, :,;; ;,,,,(Markowitz,1952) 1959 (,,2000),,, 20 60, ( Evans and Archer,1968) ,,,

,, :, ;,,?, : (1), ; (2),,,, ; (3),,, :,;; ;,,,,(Markowitz,1952) 1959 (,,2000),,, 20 60, ( Evans and Archer,1968) ,,, : : : 3 :2004 6 30 39 67,, 2005 1 1 2006 12 31,,, ( Evans and Archer) (Latane and Young) (Markowitz) :,,, :?,?,,,, 2006 12 31, 321, 8564161,53 1623150, 18196 % ; 268 6941110, 81104 %, 50 %,,2006,,,2006,

More information

Chinese Journal of Applied Probability and Statistics Vol.25 No.4 Aug (,, ;,, ) (,, ) 应用概率统计 版权所有, Zhang (2002). λ q(t)

Chinese Journal of Applied Probability and Statistics Vol.25 No.4 Aug (,, ;,, ) (,, ) 应用概率统计 版权所有, Zhang (2002). λ q(t) 2009 8 Chinese Journal of Applied Probability and Statistics Vol.25 No.4 Aug. 2009,, 541004;,, 100124),, 100190), Zhang 2002). λ qt), Kolmogorov-Smirov, Berk and Jones 1979). λ qt).,,, λ qt),. λ qt) 1,.

More information

<4D6963726F736F667420576F7264202D20B169B74FC5EF2020A8E2A9A4B0EABB79B1D0ACECAED1A56AA8E5B8D6BA71BFEFBFFDA4A7ACE3A8732E646F63>

<4D6963726F736F667420576F7264202D20B169B74FC5EF2020A8E2A9A4B0EABB79B1D0ACECAED1A56AA8E5B8D6BA71BFEFBFFDA4A7ACE3A8732E646F63> 國 立 臺 北 教 育 大 學 人 文 藝 術 學 院 語 文 與 創 作 學 系 語 文 教 學 碩 士 班 ( 暑 期 班 ) 碩 士 論 文 Master Program of Language Instruction ( Summer Program) Department of Language and Creative Writing College of Humanities and

More information

S9 2 S S S S S S

S9 2 S S S S S S 17 2 Journal of South China University of Technology Vol. 17 No. 2 2015 4 Social Science Edition Api. 2015 * 510640 TU981 A 1009-055X 201502-0106 - 11 HEMC Higher Education Mega Center 43. 3 18 ~ 20 35

More information

中國傳統醫學及養生保健學說中,與經脈及穴道有密不可分的關係

中國傳統醫學及養生保健學說中,與經脈及穴道有密不可分的關係 1 The Analysis of Meridian Point Bioenergy of Shian Kung Practices in Different Seasons Chieng Chien-Min National Kaohsiung University of Applied Sciences Abstract The current paper aims at examining the

More information

山东省招生委员会

山东省招生委员会 附 件 2: 2012 年 度 山 东 大 学 精 品 课 程 申 报 表 课 程 名 称 课 程 负 责 人 所 属 院 系 网 站 建 设 与 设 计 连 莉 副 教 授 计 算 机 学 院 课 程 类 型 理 论 课 ( 不 含 实 践 ) 理 论 课 ( 含 实 践 ) 实 践 ( 验 ) 课 所 属 专 业 大 类 所 属 专 业 类 理 工 电 子 信 息 科 学 类 联 系 电 话 13256167020

More information

[1] Liu Hongwei,2013, Study on Comprehensive Evaluation of Iron and Steel Enterprises Production System s Basic Capacities, International Asia Confere

[1] Liu Hongwei,2013, Study on Comprehensive Evaluation of Iron and Steel Enterprises Production System s Basic Capacities, International Asia Confere 刘 洪 伟 工 业 工 程 系 副 教 授 CV 下 载 办 公 电 话 : 电 子 邮 箱 :hw_liu999@tju.edu.cn 研 究 方 向 : 精 益 生 产 与 精 益 管 理 理 论 及 应 用 ; 工 业 工 程 与 信 息 技 术 集 成 管 理 ; 系 统 可 靠 性 理 论 与 方 法 ; 医 院 管 理 理 论 及 应 用 教 育 与 工 作 经 历 时 间 单 位 专

More information

第 1 期 常 壮 等 : 基 于 RS-485 总 线 的 舰 船 损 管 训 练 平 台 控 系 统 研 究 87 能 : 1) 损 管 基 本 理 论 的 学 习 帮 助 舰 员 熟 悉 舰 艇 舱 室 相 关 规 章 制 度 损 管 施 分 布 和 使 用 不 沉 性 文 件 等 ) 损 管

第 1 期 常 壮 等 : 基 于 RS-485 总 线 的 舰 船 损 管 训 练 平 台 控 系 统 研 究 87 能 : 1) 损 管 基 本 理 论 的 学 习 帮 助 舰 员 熟 悉 舰 艇 舱 室 相 关 规 章 制 度 损 管 施 分 布 和 使 用 不 沉 性 文 件 等 ) 损 管 第 6 卷 第 1 期 011 年 月 Chinese 中 国 Journal 舰 of船 Ship研 Research 究 Vol.6 No.1 Feb. 第 011 6 卷 doi: 10. 3969 / j. issn. 1673-3185. 011. 01. 017 基 于 RS-485 总 线 的 舰 船 损 管 训 练 平 台 控 系 统 研 究 常 壮 1 邱 金 水 刘 伯 运 1

More information

中國傳統醫學及養生保健學說中,與經脈及穴道有密不可分的關係

中國傳統醫學及養生保健學說中,與經脈及穴道有密不可分的關係 Journal of National Kaohsiung University of Applied Sciences The Study of Correlation between Time and Human Meridian Point Bioenergy Chien-Min Cheng Ching-Yi Sung 577 * ** 578 The study of correlation

More information

Microsoft Word - chnInfoPaper6

Microsoft Word - chnInfoPaper6 文 章 编 号 :3-77(2)-- 文 章 编 号 :92 基 于 中 文 拼 音 输 入 法 数 据 的 汉 语 方 言 词 汇 自 动 识 别 张 燕, 张 扬 2, 孙 茂 松 (. 清 华 大 学 计 算 机 系, 北 京 市 84;2. 搜 狗 科 技 公 司, 北 京 市 84) 摘 要 : 方 言 研 究 领 域 中 的 语 音 研 究 词 汇 研 究 及 语 法 研 究 是 方 言

More information

F4

F4 DOI:10.3969/j.issn.1009-6868.2016.01.002 网 络 出 版 地 址 :http://www.cnki.net/kcms/detail/34.1228.tn.20151117.1506.006.html Challenges and Countermeasures of Network Space Security 周 延 森 /ZHOU Yansen 周 琳 娜

More information

~ 10 2 P Y i t = my i t W Y i t 1000 PY i t Y t i W Y i t t i m Y i t t i 15 ~ 49 1 Y Y Y 15 ~ j j t j t = j P i t i = 15 P n i t n Y

~ 10 2 P Y i t = my i t W Y i t 1000 PY i t Y t i W Y i t t i m Y i t t i 15 ~ 49 1 Y Y Y 15 ~ j j t j t = j P i t i = 15 P n i t n Y * 35 4 2011 7 Vol. 35 No. 4 July 2011 3 Population Research 1950 ~ 1981 The Estimation Method and Its Application of Cohort Age - specific Fertility Rates Wang Gongzhou Hu Yaoling Abstract Based on the

More information

为 止, 以 集 中 式 光 伏 发 电 系 统 为 主, 其 主 要 原 因 是 我 国 政 策 推 动 方 面 以 国 家 主 导 为 主, 这 种 自 上 而 下 的 政 策 和 运 行 方 式, 更 容 易 迅 速 推 动 集 中 式 光 伏 系 统 的 建 设 集 中 式 光 伏 发 电

为 止, 以 集 中 式 光 伏 发 电 系 统 为 主, 其 主 要 原 因 是 我 国 政 策 推 动 方 面 以 国 家 主 导 为 主, 这 种 自 上 而 下 的 政 策 和 运 行 方 式, 更 容 易 迅 速 推 动 集 中 式 光 伏 系 统 的 建 设 集 中 式 光 伏 发 电 The Distributed Renewable Energy and Smart Micro Grid System * 我 国 分 布 式 光 伏 发 电 的 现 状 与 展 望 1 王 文 静 2 王 斯 成 1 中 国 科 学 院 电 工 研 究 所 北 京 100190 2 国 家 发 展 和 改 革 委 员 会 能 源 研 究 所 北 京 100038 摘 要 文 章 论 述 了 分

More information

km km mm km m /s hpa 500 hpa E N 41 N 37 N 121

km km mm km m /s hpa 500 hpa E N 41 N 37 N 121 32 2 2014 4 Journal of Arid Meteorology Vol. 32 No. 2 Apr 2014. 08. 03 J. 2014 32 2256-262 LU Guirong WANG Wen YU Huaizhenget al. The Influence of Damrey Typhoon on 08. 03 Rainstorm Process in Rizhao of

More information

200 31 5 SWAN 0. 01 0. 01 6 min TITAN Thunder Identification Tracking Analysis SWAN TITAN and Nowcasting 19 TREC Tracking Radar Echo by Correlaction T

200 31 5 SWAN 0. 01 0. 01 6 min TITAN Thunder Identification Tracking Analysis SWAN TITAN and Nowcasting 19 TREC Tracking Radar Echo by Correlaction T 31 1 2013 3 Journal of Arid Meteorology Vol. 31 No. 1 March 2013. SWAN J. 2013 31 1 199-205. doi 10. 11755 /j. issn. 1006-7639 2013-01 - 0199 SWAN 730020 2011 7 7 SWAN SWAN 2012 2 SWAN 1006-7639 2013-01

More information

Microsoft Word - 2.v3n1.gjtm.docx

Microsoft Word - 2.v3n1.gjtm.docx Theory of carduonephric disharmony and irritable bowel syndrome Xia-min Lu 1, Min Lu 1 Nanjing University of Traditional Chinese Medicine, Nanjing, China Department of Digestive System, Jiangsu Integrated

More information

国有大型能源企业财务风险内部控制研究

国有大型能源企业财务风险内部控制研究 Frontiers of International Accounting 国 际 会 计 前 沿, 2012, 1, 1-5 http://dx.doi.org/10.12677/fia.2012.11001 Published Online June 2012 (http://www.hanspub.org/journal/fia) A Study of Internal Control of

More information

PCA+LDA 14 1 PEN mL mL mL 16 DJX-AB DJ X AB DJ2 -YS % PEN

PCA+LDA 14 1 PEN mL mL mL 16 DJX-AB DJ X AB DJ2 -YS % PEN 21 11 2011 11 COMPUTER TECHNOLOGY AND DEVELOPMENT Vol. 21 No. 11 Nov. 2011 510006 PEN3 5 PCA + PCA+LDA 5 5 100% TP301 A 1673-629X 2011 11-0177-05 Application of Electronic Nose in Discrimination of Different

More information

物理学报 Acta Phys. Sin. Vol. 62, No. 14 (2013) 147802 叠 [4]. PET 设备最重要的部件就是探测器环, 探测 备重建图像具有减少数据插值的优势. 器环的性能直接影响 PET 的成像能力. 探头与探头 之间得到的符合直线叫做投影线. 所有的投影线在

物理学报 Acta Phys. Sin. Vol. 62, No. 14 (2013) 147802 叠 [4]. PET 设备最重要的部件就是探测器环, 探测 备重建图像具有减少数据插值的优势. 器环的性能直接影响 PET 的成像能力. 探头与探头 之间得到的符合直线叫做投影线. 所有的投影线在 数 据 插 值 对 正 电 子 发 射 断 层 成 像 设 备 的 图 像 重 建 影 响 的 研 究 * 杨 昆 刘 新 新 李 晓 苇 ( 河 北 大 学 物 理 学 院, 保 定 071000 ) ( 2013 年 1 月 30 日 收 到 ; 2013 年 4 月 9 日 收 到 修 改 稿 ) 正 电 子 发 射 断 层 扫 描 (positron emission computed tomography,

More information

具有多个输入 特别是多个输出的 部门 或 单位 ( 称为 决策单元 Decision Making Unit 简称 DMU) 间的相对有效 8 性 C2R 模型是 DEA 的个模型 也是 DEA 的基础 和重要模型 假设有 n 个决策单元 DMUj( j = 1 2 3 n) 每个 DMU 有 m

具有多个输入 特别是多个输出的 部门 或 单位 ( 称为 决策单元 Decision Making Unit 简称 DMU) 间的相对有效 8 性 C2R 模型是 DEA 的个模型 也是 DEA 的基础 和重要模型 假设有 n 个决策单元 DMUj( j = 1 2 3 n) 每个 DMU 有 m 基于 DEA 模型的 我国政府社会管理职能绩效评价研究 以 30 个省 ( 直辖市 自治区 ) 为统计样本的实证分析 * 李超显 摘 要 政府社会管理职能绩效评价是政府管理中的一个重点和难点问题 本文采用数据包络分析模型对中 30 国 30 个省( 直辖市 自治区) 的政府社会管理职能绩效进行时空差异分析和实证评价 研究发现 个省( 直辖市 自治区) 的政府社会管理职能绩效具有空间差异性 雁行形态和区域梯度性

More information

电力信息化2013年第1期.indb

电力信息化2013年第1期.indb 中图分类号 TP319 文献标志码 B 文章编号 1672-4844(213)1-87-6 摘要 SAP ERP 信息是很多大型企业的核心信息 是企业在进行容灾建设时主要关切的 信息 文章以双活方式运行的特点对 SAP ERP 信息进行了分析 推导出了 SAP ERP 信息以双活模式运行时操作响时间的计算公式 提出了影响操作响时间的主要因素是网 络时延 测试了 SAP ERP 产品以服务器双活模式运行的实际效果和以数据库双活

More information

( ) [11 13 ] 2 211,,, : (1),, 1990 ( ) ( ),, ; OD, ( ) ( ) ; , ( ), (2) 50 %,, 1999 ( ) ( ) ; (3),,

( ) [11 13 ] 2 211,,, : (1),, 1990 ( ) ( ),, ; OD, ( ) ( ) ; , ( ), (2) 50 %,, 1999 ( ) ( ) ; (3),, 21 3 2002 5 GEO GRAPHICAL RESEARCH Vol1 21, No1 3 May, 2002 : 100020585 (2002) 0320313211, (, 210093) : GIS, ( ) :, ; 4 ;,, : ; ; ; : F12919 : A 1 20 40 80, 90 [1 ], 5, 4 : (1), [2,3 ] ; (2) [4,5 ], [6

More information

g 100mv /g 0. 5 ~ 5kHz 1 YSV8116 DASP 1 N 2. 2 [ M] { x } + [ C] { x } + [ K]{ x } = { f t } 1 M C K 3 M C K f t x t 1 [ H( ω )] = - ω 2

g 100mv /g 0. 5 ~ 5kHz 1 YSV8116 DASP 1 N 2. 2 [ M] { x } + [ C] { x } + [ K]{ x } = { f t } 1 M C K 3 M C K f t x t 1 [ H( ω )] = - ω 2 10 2016 10 No. 10 Modular Machine Tool & Automatic Manufacturing Technique Oct. 2016 1001-2265 2016 10-0012 - 05 DOI 10. 13462 /j. cnki. mmtamt. 2016. 10. 004 * 116024 MIMO TH166 TG502 A Dynamic Performance

More information

thesis_irene_hsiao1

thesis_irene_hsiao1 (GE AN YAN JIU: SHANDONG PINGDU DE CHUN LEI JI HUA) THESIS Presented in Partial Fulfillment of the Requirements for the Degree Master of Arts in the Graduate School of the Ohio State University By Irene

More information

untitled

untitled 1. 95 年 度 2 老 2 老 8 10 11 理 4 2007.3.12 2. 更 Cisco 2960 switch 路 更 路 更 路 更 更 NIS 狀 料 兩 數 Visual Studio Standard.net 2005 老 2007.4.19 Panel talk 行 95 年 度 良 老 葉 羅 老 45 參 行 領 力 立 C 行 力 行 路 力 95 年 度 路 97 年

More information

中国科学技术大学学位论文模板示例文档

中国科学技术大学学位论文模板示例文档 University of Science and Technology of China A dissertation for doctor s degree An Example of USTC Thesis Template for Bachelor, Master and Doctor Author: Zeping Li Speciality: Mathematics and Applied

More information

中国主权资产负债表风险分析

中国主权资产负债表风险分析 中 国 主 权 资 产 负 债 表 及 其 风 险 评 估 ( 下 ) 1 李 扬 张 晓 晶 常 欣 汤 铎 铎 李 成 摘 要 2000~2010 年, 中 国 的 国 民 资 产 负 债 表 呈 快 速 扩 张 之 势 对 外 资 产 基 础 设 施 以 及 房 地 产 资 产 迅 速 积 累, 构 成 资 产 扩 张 的 主 导 因 素 这 记 载 了 出 口 导 向 发 展 战 略 之 下

More information

2005硕士论文模版

2005硕士论文模版 基 于 输 入 法 用 户 词 库 和 查 询 日 志 的 若 干 研 究 Some Research based on User Dictionary of Input Method and Query Log ( 申 请 清 华 大 学 工 学 硕 士 学 位 论 文 ) 培 养 单 位 : 计 算 机 科 学 与 技 术 系 学 科 : 计 算 机 科 学 与 技 术 研 究 生 : 王 鹏

More information

\\Lhh\07-02\黑白\内页黑白1-16.p

\\Lhh\07-02\黑白\内页黑白1-16.p Abstract: Urban Grid Management Mode (UGMM) is born against the background of the fast development of digital city. It is a set of urban management ideas, tools, organizations and flow, which is on the

More information

中文模板

中文模板 ISSN 1000-9825, CODEN RUXUEW E-mail jos@iscasaccn Journal of Software, Vol17, Supplement, November 2006, pp70 77 http//wwwjosorgcn 2006 by Journal of Software All rights reserved Tel/Fax +86-10-62562563

More information

2 207 Manuel Castells 12 1980 13 1 2 12 14 1 14 1 3 14 2 15

2 207 Manuel Castells 12 1980 13 1 2 12 14 1 14 1 3 14 2 15 4 2 2 Vol 42 No 2 2 0 1 3 4 Journal of Shanghai Normal University Natural Sciences Apr 2 0 1 3 * 200234 通 过 构 建 流 动 空 间 与 城 市 空 间 的 关 系 模 型, 并 基 于 精 英 空 间 分 析 了 城 市 新 的 空 间 极 化 产 生 的 机 理 和 结 果 以 上 海 市

More information

2012 2 157 No. 2 2012 Jinan Journal Philosophy and Social Sciences Sum No. 157 100871 I127. 41 A 1000-5072 2012 02-0002 - 10 4 1 1 2 1540 1503 2 2011-06 - 27 1969 1 1985 19 2 3 1997 1998 3 2 34 2 3 1540

More information

UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 厦门大学博硕士论文摘要库

UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 厦门大学博硕士论文摘要库 10384 200128011 UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 2004 5 2004 2004 2004 5 World Wide Web Robot Web / (Focused Crawling) Web Meta data Web Web I

More information

,,,, 1980,,,,, 1980, (, J,1980) (,,1980) (,,1982) (,1980) (,1982) (, 1983) (,1983) (, 1983) (,1983) (,1985) (, C,1985), 1981 1982,,, : (1980 ),,,,,, (

,,,, 1980,,,,, 1980, (, J,1980) (,,1980) (,,1982) (,1980) (,1982) (, 1983) (,1983) (, 1983) (,1983) (,1985) (, C,1985), 1981 1982,,, : (1980 ),,,,,, ( 2006 2 No. 2,2006 122 JOURNAL OF HISTORIOGRAPHY Serial No. 122 (, 100875 ;, 100006) [ ],, [ ] [ ] K092 [ ]A []100225332 (2006) 0220001211, :,,,,,,,,,,,,,,,,,,,,,, [] 2005212220 1924 ;,, ( :,,1924 ),,,,,,,,,

More information

考試學刊第10期-內文.indd

考試學刊第10期-內文.indd misconception 101 Misconceptions and Test-Questions of Earth Science in Senior High School Chun-Ping Weng College Entrance Examination Center Abstract Earth Science is a subject highly related to everyday

More information

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui,

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui, 中 国 科 学 技 术 大 学 工 程 硕 士 学 位 论 文 地 铁 内 移 动 通 信 室 内 覆 盖 分 析 及 应 用 作 者 姓 名 : 学 科 专 业 : 盛 海 亮 电 子 与 通 信 导 师 姓 名 : 李 辉 副 教 授 赵 红 媛 高 工 完 成 时 间 : 二 八 年 三 月 十 日 University of Science and Technology of Ch A dissertation

More information

****************************************************** Fundamentals of TV Tracking ****************************************************** ( ),,, :,,,,,, 1998 9 ( ISBN 7-118-01911-9),,, 1999 5 20 Email:

More information

1-34

1-34 BIBLID 0254-4466(2000)18:2 pp. 1-34 18 2 89 12 * 1 2 1 2 1 38 1981.6 854 2 11 1982.6 15-34 1992.4 232-250 3 3 3 1965.6 20 5 60 983-984 4 4 5 6 7 4 1980 20 1388 15005 5 1994.11 10 23 6 1980 11 387 8276

More information

2013_6_3.indd

2013_6_3.indd 中 国 科 技 资 源 导 刊 ISSN 1674-1544 2013 年 11 月 第 45 卷 第 6 期 95-99, 107 CHINA SCIENCE & TECHNOLOGY RESOURCES REVIEW ISSN 1674-1544 Vol.45 No.6 95-99, 107 Nov. 2013 构 建 基 于 大 数 据 的 智 能 高 校 信 息 化 管 理 服 务 系 统

More information

《红楼梦》中茗烟与李贵的对比分析

《红楼梦》中茗烟与李贵的对比分析 第 13 卷 第 2 期 中 南 大 学 学 报 ( 社 会 科 学 版 ) Vol.13 No.2 2007 年 4 月 J. CENT. SOUTH UNIV. (SOCIAL SCIENCE) Apr. 2007 红 楼 梦 茗 烟 与 李 贵 形 象 比 较 研 究 李 鸿 渊, 奉 旨 亨 ( 湖 南 科 技 大 学 人 文 学 院, 湖 南 湘 潭,411201) 摘 要 : 茗 烟 与

More information

,, :,;, ;, ;,,,,,,,,,,,,,,, 21,,,,,,,,, ( ),,,,,( ),,,,,,,,,,,,,,,,, , 1300, 31 2,1200,466,, 2 (,2005 :4) 631

,, :,;, ;, ;,,,,,,,,,,,,,,, 21,,,,,,,,, ( ),,,,,( ),,,,,,,,,,,,,,,,, , 1300, 31 2,1200,466,, 2 (,2005 :4) 631 3 [ ]1001-5558 (2007) 02-0135 - 41 [],,,,,, [ ] ; ; [] C924. 4 [] A 1999, 21, 3 2004 ([2004 ] 205 ), 2007 3 (54 ) N. W. Ethno2National Studies 2007. No. 3 ( Total No. 54) ,, :,;, ;, ;,,,,,,,,,,,,,,, 21,,,,,,,,,

More information

f 2 f 2 f q 1 q 1 q 1 q 2 q 1 q n 2 f 2 f 2 f H = q 2 q 1 q 2 q 2 q 2 q n f 2 f 2 f q n q 1 q n q 2 q n q n H R n n n Hessian

f 2 f 2 f q 1 q 1 q 1 q 2 q 1 q n 2 f 2 f 2 f H = q 2 q 1 q 2 q 2 q 2 q n f 2 f 2 f q n q 1 q n q 2 q n q n H R n n n Hessian 2012 10 31 10 Mechanical Science and Technology for Aerosace Engineering October Vol. 31 2012 No. 10 1 2 1 2 1 2 1 2 1 300387 2 300387 Matlab /Simulink Simulink TH112 A 1003-8728 2012 10-1664-06 Dynamics

More information

: 3 : , , ,, , :, ( Ravallion Chen, 2004 ; Khan Riskin, 2005,Yue et al, 2006),, (,2003 ;,200

: 3 : , , ,, , :, ( Ravallion Chen, 2004 ; Khan Riskin, 2005,Yue et al, 2006),, (,2003 ;,200 : 3 : 1995 2002, 1998 2002 1991 1995, 1991 1995,, 1998 2002, :, 80 013 0145 (Ravallion Chen, 2004 ; Khan Riskin, 2005,Yue et al, 2006),, (,2003 ;,2006),, (Li et al,1998),,,?,, ( Fields, 2005),,, (income

More information

/3 CAD JPG GIS CAD GIS GIS 1 a CAD CAD CAD GIS GIS ArcGIS 9. x 10 1 b 1112 CAD GIS 1 c R2VArcscan CAD MapGIS CAD 1 d CAD U

/3 CAD JPG GIS CAD GIS GIS 1 a CAD CAD CAD GIS GIS ArcGIS 9. x 10 1 b 1112 CAD GIS 1 c R2VArcscan CAD MapGIS CAD 1 d CAD U 1006-3862 2010 05-0059 - 07 361005 1 GIS 2 3 What if 2. 0 1 2 3 4 GIS TU984. 11 A 1 Planning Support System MIS PSS 1989 1 90 23 4-7 GIS Planning Support GIS System SDSS PSS GIS GIS CAD GIS SDSS CAD CAD

More information

豐佳燕.PDF

豐佳燕.PDF Application of Information Literacy to chiayen@estmtc.tp.edu.tw information literacy Theme-oriented teaching. Abstract Based on the definition of Information Literacy and Six core concepts of the problem

More information