2007 年 6 月, 前三名并行计算机, 全是 MPP 排在 top500 (2007/6) 的位于中国的并行机 Figure: 第一, Blue- Gene/L at Lawrence Livermore NL, 万亿次 /s(tflop/s), 65,536 dualprocess

Size: px
Start display at page:

Download "2007 年 6 月, 前三名并行计算机, 全是 MPP 排在 top500 (2007/6) 的位于中国的并行机 Figure: 第一, Blue- Gene/L at Lawrence Livermore NL, 万亿次 /s(tflop/s), 65,536 dualprocess"

Transcription

1 1 Introduction to Department of Science and Engineering School of Mathematics School Peking University August 9, 操作系统通信标准 机群 (cluster) 星群 (constellation) 大规模并行计算机系统 (massively parallel processing, MPP) 加快求解问题的速度 提高求解问题的规模 Figure: Architecture share for 06/2007 from

2 2007 年 6 月, 前三名并行计算机, 全是 MPP 排在 top500 (2007/6) 的位于中国的并行机 Figure: 第一, Blue- Gene/L at Lawrence Livermore NL, 万亿次 /s(tflop/s), 65,536 dualprocessor compute nodes Figure: 第二,Jaguar at Oak Ridge NL,101.7 TFlop/s Figure: 第三, Red Storm at Sandia NL,101.4 TFlop/s 43 Sinopec ShengLI Oilfield Branch Company,( 公司 ) Geophysical Research Institute China ( 地点 ) IBM (CPU 个数,GFlop/s) 87 China Meteorological Administration China eserver IBM Shanghai Supercomputer Center China Dawning 4000A Dawning Gaming Company (B) 356,428 Digital China Ltd. 473 Chinese Academy of Science China DeepComp 6800 lenovo Unis Digital Co. Ltd. 并行计算机的性能的发展 并行计算机的性能的发展 外插 Figure: Performance Development. 前 500 总的计算能力, 第一名的计算能力, 平均计算能力 Figure: Projected Performance Development. 前 500 总的计算能力, 第一名的计算能力, 平均计算能力

3 操作系统 通信标准 数据并行 :HPF 共享存储 :OpenMP 消息传递 :PVM, MPI 操作系统 通信标准 Figure: Operating system family share 06/07 from 操作系统 通信标准 只学习 MPI, 它适用于各种类型的机器, 如 cluster, constellation, MPP 良好的可移植性 很好的可扩展性 完备的异步通信功能 有精确的定义, 从而为并行软件的发展提供了必要的条件 Fortran, Java, Basic, C, C++ Dongarra & Sullivan, Top ten the century, IEEE, in Science & Engineering, Jan./Feb., Why C++? It provides an object-oriented infrastructrue that accommodates a natural break down of the problem into a collection of data structures and operations on those structures. 面向对象的基本结适合把问题自然地分解成数据结构和这些数据结构上的操作 The use of C++ transcends many disciplines beyond engineering where the traditionally FORTRAN has been the prevailing language. C++ 的使用在很多学科都超过了 Fortran C++ is a language naturally compatible with basic algorithmic concepts of C++ 和基本算法概念相一致的一种语言 polymorphism 多态性 recursive function calling 递归 dynamic memory allocating 动态分配内存 encapsulation 封装 The Monte Carlo method 模拟随机现象 The Simplex method 线性优化问题 The Krylov subspace iteration for fast linear solvers and eigensolvers The Householder matrix decomposition to express a matrix as a product of simpler matrices 1957: The FORTRAN compiler that liberated scientists and engineers from programming in assembly : The QR algorithm to compute many eigenvalues 1962: The Quicksort algorithm to put things in numerical or alphabetical order fast 1965: The Fast Fourier Transform to reduce operation count in Fourier series representation 1977: The Integer relation detection algorithm, which is useful for bifurcations and in quantum eld theory 1987: The fast multipole algorithm for N-body problems

4 科学计算数值模拟 一些算法的并行实现是显而易见的, 如两个向量相加 c i = a i + b i ; i = 1; 2; ; n 一些算法是需要适当的通信, 如两个向量的内积 d = P n i=1 a ib i 一些算法的并行实现看起来是不可能的如向量 要计算 ~x = (1; 2; 3; 4; 5; 6; 7; 8; 9; 10; ) ~y = (1; 3; 6; 10; 15; 21; 28; 37; 40; ) < ++ >, 其中 y i = P i j=1 x j. 使用 MPI_SUM 操作的 MPI_Scan 函数就实现了上面计算的并行算法 从 Real world problem 得到数学模型数值求解数学方程偏微分方程数值解有限差分有限元谱方法最优化数值代数线性方程组的求解求矩阵的特征值, 奇异值 对方程的解的分析和可视化 并行计算显然是一个交叉学科, 涉及的内容很多 C++, 面向对象的编程语言 MPI(MPICH), 并行通信的标准 ( 实现 ) Trilinos C++ 编写的数值代数算法的并行实现 Epetra 提供对 MPI 函数的 C++ 接口提供 BLAS,LAPACK 库的 C++ 接口提供向量 矩阵的各种分布存储和操作的并行实现 Teuchos and Triutils: 两个辅助的类 AztecOO: 求解稀疏线性方程组的 Krylov 子空间迭代法 IFPACK: 不完全 LU 分解等预优 ML: 多重网格预优学习方法 google, 寻找可利用的资源读代码, 看文档写程序, 做练习 千里之行, 始于足下 介绍很简单, 但是能够提供一个脚手架 通过这个介绍, 你可以使用 C++ 这个工具 You will understand more about it 任何编程语言 = 数据 + 操作 解决实际工程问题是确定什么是相关数据, 做什么操作才得到想要的结果 假设我们已经知道数据和操作, 编程就是把这些数据和操作翻译成编程语言

5 Main function 主函数 一个简单的 non-trivial C++ 程序 #include<iostream> 计算机开始程序的地方 main() 一个简单的程序 int main(){ std::cout <<``Hello World!''<<std::endl; int main(){ } } main() 就是计算开始计算的起点 编译 : fg 内部分就是 main 函数的函数语句这个例子是空 就是函数什么都不做 g++ -c -o hello.o hello.cpp 链接 : g++ -o hello.exe hello.o 运行 :./hello.exe C++ 类的例子 :I 函数 : 算法的抽象类 : 数据和数据之上的操作的抽象函数的声明 float func(float x); 函数名字, 输出, 输入 ( 参数 ) 函数体 float func(float x){float y; y =2*x; return y}; 函数在调用之前必须先声明 #include <math.h> class My{ private: int length_; double *data_; public: My(int n){ length_ = n; data_ = new double[n]; }; ~My(){ delete[] data_; }; int length(){return length_; }; const double & operator[] (const int i) const {return data_[i];}; double & operator[](const int i) {return data_[i];};

6 C++ 类的例子 :II C++ 类的例子 :III double norm2(){ double norm = 0.0; for(int i=0;i<length_;i++) norm+=data_[i]*data_[i]; return sqrt(norm); } }; // 这个分号是不可缺少的 #include <iostream> int main(){ My vec(5); for(int i =0; i<vec.length(); i++) vec[i] = i*100.0; std::cout<<"the vector is "<<std::endl; for(int i =0; i<vec.length(); i++) std::cout << vec[i]<< " "; std::cout<<std::endl; std::cout<<"the 2-norm of the vector is " <<vec.norm2()<<std::endl; return 1; } 编译 :g++ -lm -o a.exe a.cpp 运行结果 : tlu:lecture$./a.exe The vector is The 2-norm of the vector is 类定义中的一些概念 构造函数 :A constructor is the rst method which is called when an object is instantiated. 析构函数 :A destructor is the method called prior to an object being deleted. Some methods modify the data contained within the oject, while others do not. overloaded operators Getting Past ;, and fg Basic Data Type, int, long, oat, double, char, Basic Operations, +,-,*,/, %, Bool Expressions, a&&b, ajjb, a > b, if 语句,for 语句输出, 输入

7 is much faster than main memory Fortran column-major-order storage C++ row-major-order storage Matrix-Times- Example cache 的使用我们无法控制, 能做得就是尽量使得一次操作装入的数据和 cache 长度大小比较匹配 尽量多用 BLAS Level 3 函数, 少用 BLAS Leve 2 or 1. 上面的建议参考 Scientic in C++ and MPI 的第 60 页 = 表示赋值, 不是表示方程. Given ~x0, ~x1,, ~x n 1, nd ~q0, ~q1,, ~q n 1 which are orthogonal to each other and whose norms are unity and they expand the same space as ~x i. ~q 0 = ~x 0 =jjxjj2 将第 i 个向量减去它在前 i P i 1 ~yi = ~xi qi = ~y i jj~y i jj 2 1 个向量 ~q 上的投影 j=0(~q T j ~x i)qj, i = 1; 2; ; n 1 Summarize the algorithm as follows Modied Initialize: Compute r00 = jj~x0jj2. If r00 = 0, STOP, else ~q0 = ~x0=r00. Begin Loop: For i = 1; ; n P 2 ~yi = i 1 ~xi j=0 r ij ~q j 1 Do: 1 Compute rij = ~q T j ~x i ; j = 0; ; i 1 3 ri = jj~yijj2 4 If rii = 0, STOP, else ~qi = ~yi=ri End Loop. Given ~x0, ~x1,, ~x n 1, nd ~q0, ~q1,, ~q n 1 which are orthogonal to each other and whose norms are unity and they expand the same space as ~x i. 差别之处 ~q 0 = ~x 0 =jjxjj2 ~zi = ~xi Begin Loop for j = 0; 1; ; i 1 Do: 数学上 Modied GS 和 GS 是等价的, 因为 qj 之间相互正交, 但数值上这种策略更好 ~yi = ~zi ~zi = ~yi End Loop 差别之处的尾 ~q i = ~y i jj~yijj 2 (~q T j ~z i)qj

8 Algorithm Initialize: Compute r00 = jj~x0. If r00 = 0, STOP, else ~q0 = ~x0=r00. Begin Loop: For i = 1; ; n 1 Do: 1 Classical GS 的头 2 rij = (~qj ; ~xi) P 3 ~yi = i 1 ~xi j=0 r ij ~qj 4 Classical GS 的尾 5 修正 GS 算法和 classic GS 算法差别之处 : ~yi = ~xi Begin Loop: For j = 0; ; i Compute rij = ~q j T ~y i, ~yi = ~yi End Loop. 6 差别之处的尾 7 rjj = jj~yjjj2 rij ~qj 8 If rjj = 0, STOP, else ~qj = ~yj =rjj End Loop. 1 Do: i 阅读课本第一章 浏览网站 安装 ubuntu 操作系统 阅读我博客中的例子 :C++ 程序的一个例子和常见错误以及调试工具 valgrind 的使用 运行上面程序中的例子, 比较 和 Modied 两种算法输出结果的不同 Use the classical and the modifed Gram- Schmidt algorithms to orthonormalize the vectors x0 = (1; 10 4 ; 0); x1 = (1; 0; 10 4 ): Comparte the two results. What do you observe? 作业要求 : 后三项要写出报告来, 可以上传到我的 ftp 上

1 2 3 操作系统通信标准 Introduction to C++ Learning the Syntax and Other Basic Commands Cache Gram-Schmidt Vector Orthogonalization 9

1 2 3 操作系统通信标准 Introduction to C++ Learning the Syntax and Other Basic Commands Cache Gram-Schmidt Vector Orthogonalization 9 Introduction to Department of Science and Engineering School of Mathematics School Peking University August 9, 2007 1 2 3 操作系统通信标准 4 5 6 7 8 Introduction to C++ Learning the Syntax and Other Basic Commands

More information

ENGG1410-F Tutorial 6

ENGG1410-F Tutorial 6 Jianwen Zhao Department of Computer Science and Engineering The Chinese University of Hong Kong 1/16 Problem 1. Matrix Diagonalization Diagonalize the following matrix: A = [ ] 1 2 4 3 2/16 Solution The

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

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

FY.DOC

FY.DOC 高 职 高 专 21 世 纪 规 划 教 材 C++ 程 序 设 计 邓 振 杰 主 编 贾 振 华 孟 庆 敏 副 主 编 人 民 邮 电 出 版 社 内 容 提 要 本 书 系 统 地 介 绍 C++ 语 言 的 基 本 概 念 基 本 语 法 和 编 程 方 法, 深 入 浅 出 地 讲 述 C++ 语 言 面 向 对 象 的 重 要 特 征 : 类 和 对 象 抽 象 封 装 继 承 等 主

More information

9, : Java 19., [4 ]. 3 Apla2Java Apla PAR,Apla2Java Apla Java.,Apla,,, 1. 1 Apla Apla A[J ] Get elem (set A) A J A B Intersection(set A,set B) A B A B

9, : Java 19., [4 ]. 3 Apla2Java Apla PAR,Apla2Java Apla Java.,Apla,,, 1. 1 Apla Apla A[J ] Get elem (set A) A J A B Intersection(set A,set B) A B A B 25 9 2008 9 M ICROEL ECTRON ICS & COMPU TER Vol. 25 No. 9 September 2008 J ava 1,2, 1,2, 1,2 (1, 330022 ; 2, 330022) :,. Apla - Java,,.. : PAR ;Apla - Java ; ;CMP ; : TP311 : A : 1000-7180 (2008) 09-0018

More information

并行程序设计基础

并行程序设计基础 1800 1800 学 计 发 软 调 术 计 术 应 软 务 2 1. 论 学 2. 实 验 学 3. 计 学 计 学 计 学 计 动 学 计 学 计 学 计 学 计 学 计 学 计 电 学 3 4 ( 级 计 ) CRAY, 银 I SMP( ) IBM p690 SUN MPP( 规 ) T3E 1000 HP ccnuma( 储 ) SGI Qrigin 统 联 腾 1800, IBM SP2

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

* CO3 A 1674-2486 2011 04-0005 - 18 P. 253 * 5 1. 1949 1991 1949 1991 6 2. 7 1 2001 2 2008 8 1 2 2008 11 http / /www. rnd. ncnu. edu. tw /hdcheng /method /ways. doc 2008 / 9 disciplinary matrix 1 1. 2001

More information

Strings

Strings Inheritance Cheng-Chin Chiang Relationships among Classes A 類 別 使 用 B 類 別 學 生 使 用 手 機 傳 遞 訊 息 公 司 使 用 金 庫 儲 存 重 要 文 件 人 類 使 用 交 通 工 具 旅 行 A 類 別 中 有 B 類 別 汽 車 有 輪 子 三 角 形 有 三 個 頂 點 電 腦 內 有 中 央 處 理 單 元 A

More information

科学计算的语言-FORTRAN95

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

More information

Microsoft Word - 物件導向編程精要.doc

Microsoft Word - 物件導向編程精要.doc Essential Object-Oriented Programming Josh Ko 2007.03.11 object-oriented programming C++ Java OO class object OOP Ruby duck typing complexity abstraction paradigm objects objects model object-oriented

More information

<4D6963726F736F667420576F7264202D20C9CFBAA3BFC6BCBCB4F3D1A7D0C5CFA2D1A7D4BA32303136C4EAC7EFBCBEC8EBD1A7B2A9CABFD7CAB8F1BFBCCAD4CAB5CAA9CFB8D4F22D30343036C8B7B6A8B8E5>

<4D6963726F736F667420576F7264202D20C9CFBAA3BFC6BCBCB4F3D1A7D0C5CFA2D1A7D4BA32303136C4EAC7EFBCBEC8EBD1A7B2A9CABFD7CAB8F1BFBCCAD4CAB5CAA9CFB8D4F22D30343036C8B7B6A8B8E5> 上 海 科 技 大 学 信 息 科 学 与 技 术 学 院 年 度 博 士 资 格 考 试 实 施 细 则 一 总 则 本 细 则 由 上 海 科 技 大 学 信 息 科 学 与 技 术 学 院 ( 以 下 简 称 信 息 学 院 ) 教 学 指 导 委 员 会 讨 论 制 定, 适 用 于 信 息 学 院 2014 级 硕 士 研 究 生 的 年 度 博 士 资 格 考 试 信 息 学 院 2014

More information

Microsoft PowerPoint - string_kruse [兼容模式]

Microsoft PowerPoint - string_kruse [兼容模式] Strings Strings in C not encapsulated Every C-string has type char *. Hence, a C-string references an address in memory, the first of a contiguous set of bytes that store the characters making up the string.

More information

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis Chap. 4 Techniques of Circuit Analysis Contents 4.1 Terminology 4.2 Introduction to the Node-Voltage Method 4.3 The Node-Voltage Method and Dependent Sources 4.4 The Node-Voltage Method: Some Special Cases

More information

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

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

More information

彩色地图中道路的识别和提取

彩色地图中道路的识别和提取 9310016, i ii Abstract This thesis is on the researching of recognizing the roads in map image by computer. Based on the theory of Pattern Recognition, there is a method to be discussed, which can recognize

More information

201406002+大学计算机基础B.doc

201406002+大学计算机基础B.doc 目 录. 大 学 计 算 机 基 础 B( 非 独 立 设 课 ).... 计 算 机 操 作 基 础 ( 独 立 设 课 )...3 3. 程 序 设 计 基 础 ( 非 独 立 设 课 )...5 4. 面 向 对 象 程 序 设 计 ( 非 独 立 设 课 )...8 5. 数 据 库 原 理 ( 非 独 立 设 课 )...0 6. 算 法 设 计 与 分 析 ( 非 独 立 设 课 )...

More information

XXX专业本科人才培养方案

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

More information

Microsoft Word - 201506定版

Microsoft Word - 201506定版 56 Chinese Journal of Library and Information Science for Traditional Chinese Medicine Dec. 2015 Vol. 39 No. 6 综 述 中 医 药 学 语 言 系 统 研 究 综 述 于 彤, 贾 李 蓉, 刘 静, 杨 硕 *, 董 燕, 朱 玲 中 国 中 医 科 学 院 中 医 药 信 息 研 究 所,

More information

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

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

More information

2009.05

2009.05 2009 05 2009.05 2009.05 璆 2009.05 1 亿 平 方 米 6 万 套 10 名 20 亿 元 5 个 月 30 万 亿 60 万 平 方 米 Data 围 观 CCDI 公 司 内 刊 企 业 版 P08 围 观 CCDI 管 理 学 上 有 句 名 言 : 做 正 确 的 事, 比 正 确 地 做 事 更 重 要 方 向 的 对 错 于 大 局 的 意 义 而 言,

More information

1 C++ 2 Bjarne Stroustrup C++ (system programming) 6 (infrastructure) C++ 7 Herb Sutter 8 C++ (efficiency) (flexibility) 9 (abstraction) (productivity

1 C++ 2 Bjarne Stroustrup C++ (system programming) 6 (infrastructure) C++ 7 Herb Sutter 8 C++ (efficiency) (flexibility) 9 (abstraction) (productivity 1 C++ 1 C++ Primer C++ (giantchen@gmail.com) 2012-7-11 Creative Commons - - 3.0 Unported (cc by-nc-nd) http://creativecommons.org/licenses/by-nc-nd/3.0/ 1 C++ 2009 Stanley Lippman C++ C++ Java/C#/Python

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

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

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

20081421002 ) 2012 5 5 1993 7 15 600 18 12 18 18 18 1 Title Empirical Analysis to Operating Performance of Mainland Companies Listed in Hong Kong Abstract With the deepening reform of development, more

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

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF I II III IV V VI In recent years, the Taiwan s TV talk shows about the political topic have a bias in favour of party. In Taiwan, there are two property of party, one is called Blue property of party,

More information

CH01.indd

CH01.indd 3D ios Android Windows 10 App Apple icloud Google Wi-Fi 4G 1 ( 3D ) 2 3 4 5 CPU / / 2 6 App UNIX OS X Windows Linux (ios Android Windows 8/8.1/10 BlackBerry OS) 7 ( ZigBee UWB) (IEEE 802.11/a/b/g/n/ad/ac

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

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

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

,20 80,,,,, ; 80 90,, [ 4 ], [ 5 ],, ;21,,,,,,,20 80,,,,, ( ) ; ( ) ; ( ) ; ( ) [6 ], 90,,,,, [ 7 ] 21,,,,, [ 8 ],,, 30,,,,,,,,,,, ;,, ;,, ; 30,,,,,,,

,20 80,,,,, ; 80 90,, [ 4 ], [ 5 ],, ;21,,,,,,,20 80,,,,, ( ) ; ( ) ; ( ) ; ( ) [6 ], 90,,,,, [ 7 ] 21,,,,, [ 8 ],,, 30,,,,,,,,,,, ;,, ;,, ; 30,,,,,,, 2009 3 ( 350 ) 30 EDUCA TIONAL RESEARCH No. 3,2009 General,No. 350 30 [ ] 30,,:, ;,;, ;,;, ;, ;, [] ;; ; [ ],, ( 200062) 30,,,,,,,,,, 30,,,,20,,,,, ;, [ 1 ] 30,,,,,20 80,,,,,90,,,21,,,20 70 80,,90, [ 2

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

10384 199928010 UDC 2002 4 2002 6 2002 2002 4 DICOM DICOM 1. 2. 3. Canny 4. 5. DICOM DICOM DICOM DICOM I Abstract Eyes are very important to our lives. Biologic parameters of anterior segment are criterions

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

C/C++语言 - C/C++数据

C/C++语言 - C/C++数据 C/C++ C/C++ Table of contents 1. 2. 3. 4. char 5. 1 C = 5 (F 32). 9 F C 2 1 // fal2cel. c: Convert Fah temperature to Cel temperature 2 # include < stdio.h> 3 int main ( void ) 4 { 5 float fah, cel ;

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

Outline Speech Signals Processing Dual-Tone Multifrequency Signal Detection 云南大学滇池学院课程 : 数字信号处理 Applications of Digital Signal Processing 2

Outline Speech Signals Processing Dual-Tone Multifrequency Signal Detection 云南大学滇池学院课程 : 数字信号处理 Applications of Digital Signal Processing 2 CHAPTER 10 Applications of Digital Signal Processing Wang Weilian wlwang@ynu.edu.cn School of Information Science and Technology Yunnan University Outline Speech Signals Processing Dual-Tone Multifrequency

More information

第7章-并行计算.ppt

第7章-并行计算.ppt EFEP90 10CDMP3 CD t 0 t 0 To pull a bigger wagon, it is easier to add more oxen than to grow a gigantic ox 10t 0 t 0 n p Ts Tp if E(n, p) < 1 p, then T (n) < T (n, p) s p S(n,p) = p : f(x)=sin(cos(x))

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

实数集的程序数子集

实数集的程序数子集 探 讨 用 举 例 法 做 线 性 代 数 试 题 中 的 选 择 题 陈 必 红 (1. 深 圳 大 学 数 学 与 计 算 科 学 学 院, 广 东 省 深 圳 市 邮 编 518060) 摘 要 : 在 线 性 代 数 的 教 学 中 经 常 需 要 出 一 些 试 题 进 行 考 试, 其 中 的 一 种 题 型 为 选 择 题, 即 给 出 (A),(B),(C),(D) 四 个 选 项,

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

00. - 0-000 0 10 0 00-0 0 11 12 13 14 15 b 16 17 18 19 0 - 20 0 0-0 0 21 22 H.Mead 0-0 - ( ) 23 ( ) 24 ( ) 25 ( ) 26 27 00 0 00 0 28 29 30 31 ( ) 0 0 32 ( ) 33 ( ) 34 ( ) 35 ( ) 36 ( ) ( ) Northrop F.S.C.

More information

資 訊 國 力 發 展 論 壇 2016 年 度 報 告 資 訊 軟 體 人 力 向 下 扎 根 與 培 育 指 導 單 位 : 教 育 部 行 政 院 科 技 會 報 主 辦 單 位 : 國 立 成 功 大 學 國 立 臺 灣 科 技 大 學 國 立 臺 灣 師 範 大 學 協 辦 單 位 : 電 腦 學 會 資 訊 學 會 執 行 單 位 : 教 育 部 資 通 訊 軟 體 創 新 人 才 推

More information

OOP with Java 通知 Project 4: 4 月 18 日晚 9 点 关于抄袭 没有分数

OOP with Java 通知 Project 4: 4 月 18 日晚 9 点 关于抄袭 没有分数 OOP with Java Yuanbin Wu cs@ecnu OOP with Java 通知 Project 4: 4 月 18 日晚 9 点 关于抄袭 没有分数 复习 类的复用 组合 (composition): has-a 关系 class MyType { public int i; public double d; public char c; public void set(double

More information

Microsoft PowerPoint - VCAD.ppt []

Microsoft PowerPoint - VCAD.ppt [] WG HPCHPC 2 2004 MD-GRAPE2 GRAPE1989 MDM:MD-GRAPE2 2004MDMRSCC 2006MD-GRAPE3 1 Peta FLOPS 200611Gordon Bell installed Honorable MD-GRAPE3 Planed (RIKEN) Mention180TFLOPS 1PetaFLOPS MD-GRAPE3 BlueGene/Q

More information

% % % % % % ~

% % % % % % ~ 1001-5558 2015 03-0021-16 2010 C91 A 2014 5 2010 N. W. Journal of Ethnology 2015 3 86 2015.No.3 Total No.86 2010 2010 2181.58 882.99 40.47% 1298.59 59.53% 2013 2232.78 847.29 37.95% 1385.49 62.05% 1990

More information

林教授2.PDF

林教授2.PDF 83 Taiwan Congress Function and Trend After Embellishing Constitute LinSuei - gie Abstract National Assembly becomes to be the non-permanent conference aimed at the particular assignments. For this reason,

More information

Microsoft Word - 33-p0191-14skyd8.doc

Microsoft Word - 33-p0191-14skyd8.doc 第 20 卷 第 4 期 中 南 大 学 学 报 ( 社 会 科 学 版 ) Vol.20 No.4 2014 年 8 月 J. CENT. SOUTH UNIV. (SOCIAL SCIENCE) Aug. 2014 基 于 模 糊 层 次 分 析 法 的 政 府 干 部 胜 任 力 评 价 实 证 研 究 薛 琴 ( 南 京 工 程 学 院 经 济 与 管 理 学 院, 江 苏 南 京,211167)

More information

c_cpp

c_cpp C C++ C C++ C++ (object oriented) C C++.cpp C C++ C C++ : for (int i=0;i

More information

《嵌入式系统设计》教学大纲

《嵌入式系统设计》教学大纲 多 核 架 构 及 编 程 技 术 教 学 大 纲 课 程 代 码 :20062022071 课 程 负 责 人 : 杨 剑 锋 课 程 中 文 名 称 : 多 核 架 构 及 编 程 技 术 课 程 英 文 名 称 :Multi-Core Architecture and Programming Technologies 课 程 类 别 : 专 业 必 修 课 程 学 分 数 :3 课 程 学 时

More information

Microsoft Word - D-2°w¶Ë¬ì¹ï¤U�Iµh®{¤âÀˬd¬yµ{_¬x°ö�×__P.329-335_.doc

Microsoft Word - D-2°w¶Ë¬ì¹ï¤U�Iµh®{¤âÀˬd¬yµ{_¬x°ö�×__P.329-335_.doc 針 傷 科 對 下 背 痛 徒 手 檢 查 流 程 329 針 傷 科 對 下 背 痛 徒 手 檢 查 流 程 洪 培 修 1 張 晉 賢 2 張 世 良 3 1 嘉 義 基 督 教 醫 院 中 醫 科 系 2 長 庚 紀 念 醫 院 中 醫 醫 院 基 隆 分 院 暨 長 庚 大 學 醫 學 院 3 中 國 醫 藥 大 學 中 醫 院 學 針 灸 研 究 所 摘 要 前 言 腰 痛 或 下 背 痛

More information

现代汉语语料库基本加工规格说明书

现代汉语语料库基本加工规格说明书 TP391 The Basic Processing of Contemporary Chinese Corpus at Peking University SPECIFICATION YU Shi-wen DUAN Hui-ming ZHU Xue-feng Bing SWEN (Institute of Computational Linguistics, Peking University,

More information

4 47 / / / / / / / / / / / / / / 30 T. S

4 47 / / / / / / / / / / / / / / 30 T. S 5 4 05 7 Journal of Peking University Philosophy and Social Sciences Vol. 5 No. 4 Jul. 05 0087 0 30 I 06. 6 A 000-599 05 04-0046-3 0 30 30 30 05-03-0 0&ZD098 4 47 / / / / / / / / / / / / / / 30 T. S. 9

More information

Microsoft Word - 01李惠玲ok.doc

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

More information

目 录 说 明...1 一 通 识 教 育 课 程...1 二 通 识 教 育 课 程 分 类...1 三 通 识 教 育 课 程 学 分 要 求...2 四 通 识 教 育 课 程 选 课...4 通 识 教 育 课 程 介 绍...8 一 通 识 教 育 核 心 课 程...8 人 文 科 学

目 录 说 明...1 一 通 识 教 育 课 程...1 二 通 识 教 育 课 程 分 类...1 三 通 识 教 育 课 程 学 分 要 求...2 四 通 识 教 育 课 程 选 课...4 通 识 教 育 课 程 介 绍...8 一 通 识 教 育 核 心 课 程...8 人 文 科 学 2013-2014 学 年 度 第 一 学 期 通 识 教 育 课 程 选 课 手 册 教 务 处 通 识 教 育 中 心 二 一 三 年 八 月 目 录 说 明...1 一 通 识 教 育 课 程...1 二 通 识 教 育 课 程 分 类...1 三 通 识 教 育 课 程 学 分 要 求...2 四 通 识 教 育 课 程 选 课...4 通 识 教 育 课 程 介 绍...8 一 通 识 教

More information

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D 2008 1 1 A. B. C. D. UML 2 3 2 A. B. C. D. 3 A. B. C. D. UML 4 5 4 A. B. C. D. 5 A. B. C. D. 6 6 A. DES B. RC-5 C. IDEA D. RSA 7 7 A. B. C. D. TCP/IP SSL(Security Socket Layer) 8 8 A. B. C. D. 9 9 A. SET

More information

~ Capability Maturity Model Integration, CMMI CMMI

~ Capability Maturity Model Integration, CMMI CMMI 2008 11 331~350 1 2 3 1 2 3 Capability Maturity Model Integration, CMMI CMMI 360 037 381274 e-mail bcdefg@nuu.edu.tw 331 Interpreting the software-development framework stemming from the gradual hexagram

More information

10384 19020101152519 UDC Rayleigh Quasi-Rayleigh Method for computing eigenvalues of symmetric tensors 2 0 1 3 2 0 1 3 2 0 1 3 2013 , 1. 2. [4], [27].,. [6] E- ; [7], Z-. [15]. Ramara G. kolda [1, 2],

More information

一 本 周 综 述 本 周 首 次 发 布 国 企 改 革 的 地 方 主 要 是 武 汉 市, 其 他 省 市 广 东 上 海 和 合 肥 进 入 国 企 改 革 的 实 施 阶 段 央 企 方 面 本 周 最 大 的 看 点 是 中 国 船 舶 重 工 集 团 和 中 国 航 空 工 业 集 团

一 本 周 综 述 本 周 首 次 发 布 国 企 改 革 的 地 方 主 要 是 武 汉 市, 其 他 省 市 广 东 上 海 和 合 肥 进 入 国 企 改 革 的 实 施 阶 段 央 企 方 面 本 周 最 大 的 看 点 是 中 国 船 舶 重 工 集 团 和 中 国 航 空 工 业 集 团 中 国 金 融 数 据 及 解 决 方 案 首 席 服 务 商 国 资 改 革 政 策 与 企 业 动 态 跟 踪 周 报 : 央 企 改 革 开 启 两 股 六 连 板 (9 月 26 日 ) 上 海 万 得 信 息 技 术 股 份 有 限 公 司 Shanghai Wind Information Co., Ltd. 地 址 : 上 海 市 浦 东 新 区 福 山 路 33 号 建 工 大 厦

More information

2015年4月11日雅思阅读预测机经(新东方版)

2015年4月11日雅思阅读预测机经(新东方版) 剑 桥 雅 思 10 第 一 时 间 解 析 阅 读 部 分 1 剑 桥 雅 思 10 整 体 内 容 统 计 2 剑 桥 雅 思 10 话 题 类 型 从 以 上 统 计 可 以 看 出, 雅 思 阅 读 的 考 试 话 题 一 直 广 泛 多 样 而 题 型 则 稳 中 有 变 以 剑 桥 10 的 test 4 为 例 出 现 的 三 篇 文 章 分 别 是 自 然 类, 心 理 研 究 类,

More information

Microsoft Word - Alan Jameson's Master's Thesis.pdf

Microsoft Word - Alan Jameson's Master's Thesis.pdf Obstacles and Opportunities for Microcredit Companies Developing in the Countryside Dissertation Presented in Partial Fulfillment of the Requirements for Master of Arts in the Graduate School of The Ohio

More information

UDC The Policy Risk and Prevention in Chinese Securities Market

UDC The Policy Risk and Prevention in Chinese Securities Market 10384 200106013 UDC The Policy Risk and Prevention in Chinese Securities Market 2004 5 2004 2004 2004 5 : Abstract Many scholars have discussed the question about the influence of the policy on Chinese

More information

深圳市太光电信股份有限公司章程

深圳市太光电信股份有限公司章程 神 州 数 码 信 息 服 务 股 份 有 限 公 司 章 程 二 O 一 五 年 十 二 月 1 目 录 第 一 章 总 则... 1 第 二 章 经 营 宗 旨 和 范 围... 2 第 三 章 股 份... 3 第 一 节 股 份 发 行... 3 第 二 节 股 份 增 减 和 回 购... 4 第 三 节 股 份 转 让... 5 第 四 章 股 东 和 股 东 大 会... 6 第 一

More information

Microsoft PowerPoint - plan06.ppt

Microsoft PowerPoint - plan06.ppt 程 序 设 计 语 言 原 理 Principle of Programming Languages 裘 宗 燕 北 京 大 学 数 学 学 院 2012.2~2012.6 6. 基 本 控 制 抽 象 子 程 序 抽 象 子 程 序 活 动 和 局 部 环 境 静 态 实 现 模 型 一 般 实 现 模 型 调 用 序 列 和 在 线 展 开 参 数 机 制 泛 型 子 程 序 异 常 处 理 其

More information

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.06.doc

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.06.doc 2 5 8 11 0 13 1. 13 2. 15 3. 18 1 23 1. 23 2. 26 3. 28 2 36 1. 36 2. 39 3. 42 4. 44 5. 49 6. 51 3 57 1. 57 2. 60 3. 64 4. 66 5. 70 6. 75 7. 83 8. 85 9. 88 10. 98 11. 103 12. 108 13. 112 4 115 1. 115 2.

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

中铁某集团人力资源咨询项目建议书

中铁某集团人力资源咨询项目建议书 梳 理 各 级 岗 位 体 系, 改 善 绩 效 考 核 制 度, 设 计 薪 酬 激 励 机 制 全 面 提 升 中 铁 某 局 集 团 人 力 资 源 管 理 水 平 中 铁 某 局 集 团 人 力 资 源 管 理 咨 询 项 目 建 议 书 上 海 慧 朴 企 业 管 理 有 限 公 司 目 录 项 目 背 景 和 咨 询 目 标 项 目 工 作 思 路 项 目 初 步 计 划 和 成 果 项

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 / SCI EI OFFER OFFER / OFFER / / 9 9.15 11.20 12 1.3 1.20 2.20 3 4 5 6 7.12 7.13 Resume/CV Application Form Cover Letter Transcript Certificates Publications Recommendation 4 1. 2. 3. 5 1. 1.1 1.2 1.3

More information

建 筑 热 环 境 1 学 分 16 学 时 Thermal Environment of Buildings 课 程 基 于 人 技 术 设 计 和 未 来 四 个 方 面 进 行 讲 授, 结 合 建 筑 学 学 生 的 特 点, 基 础 部 分 着 重 说 明 物 理 概 念

建 筑 热 环 境 1 学 分 16 学 时 Thermal Environment of Buildings 课 程 基 于 人 技 术 设 计 和 未 来 四 个 方 面 进 行 讲 授, 结 合 建 筑 学 学 生 的 特 点, 基 础 部 分 着 重 说 明 物 理 概 念 建 筑 系 00020021 认 识 文 化 遗 产 1 学 分 16 学 时 Understanding of Cultural Heritage 本 课 程 为 新 生 研 讨 课 强 调 学 生 的 自 我 学 习 和 课 堂 讨 论 教 师 着 重 介 绍 文 化 遗 产 的 基 本 内 容, 学 生 要 对 某 一 特 定 的 文 化 遗 产 进 行 调 查 分 析, 写 出 研 究 报

More information

601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999 2010 20082008 2000 197

601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999 2010 20082008 2000 197 BANK OF CHINA LIMITED 3988 2010 8 26 ** ** *** # Alberto TOGNI # # # * # 1 601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999

More information

Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of

Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of 2003 MBA 600795 SWOT Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of being standardized. To all securities

More information

985 Journal of CUPL No.2 A Bimo nt hly Mar ch 2 0 1 0 ABSTRACTS Getting to the Root and Compromising China with the West: Rebuilding the Chinese Legal System 5 Yu Ronggen /Professor,

More information

從詩歌的鑒賞談生命價值的建構

從詩歌的鑒賞談生命價值的建構 Viktor E. Frankl (logotherapy) (will-to-meaning) (creative values) Ture (Good) (Beauty) (experiential values) (attitudinal values) 1 2 (logotherapy) (biological) (2) (psychological) (3) (noölogical) (4)

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466>

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466> A A A A A i A A A A A A A ii Introduction to the Chinese Editions of Great Ideas Penguin s Great Ideas series began publication in 2004. A somewhat smaller list is published in the USA and a related, even

More information

9 * B0-0 * 16ZD097 10 2018 5 3 11 117 2011 349 120 121 123 46 38-39 12 2018 5 23 92 939 536 2009 98 1844 13 1 25 926-927 3 304 305-306 1 23 95 14 2018 5 25 926-927 122 1 1 self-ownership 15 22 119 a b

More information

30, () ( ) (2),,?,,, ( ),,,,, (3),,,,, do do, do O do O d,, do,,,, do+do-d, 2 XCL (2), d ij k=,2,, k- k-,dik +dkj k k = dij k =min dij k-, XCL LOY, d

30, () ( ) (2),,?,,, ( ),,,,, (3),,,,, do do, do O do O d,, do,,,, do+do-d, 2 XCL (2), d ij k=,2,, k- k-,dik +dkj k k = dij k =min dij k-, XCL LOY, d Logistics Sci-Tech No., 200 200 02-30 (200) 0-00-0 XCL To Solve One Kind of istributing Routing roblem with XCL,, (, 20020) YO Yu-hua, YON ang, ZN Zhuo (etro China Shanghai Marketing Compang, Shanghai

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

59-81

59-81 BIBLID 0254-4466(2001)19:2 pp. 59-81 19 2 90 12 * 59 60 19 2 1498-1583 6 1572 12 27 1525-1582 1572-1620 1368-1398 1426-1435 1450-1456 1610-1695 15 1538-1588 1535-1608 61 1 1503-1583 1516-1591 1472-1528

More information

University of Science and Technology of China A dissertation for master s degree A Study on Cross-border M&A of Chinese Enterprises Author s Name: JIA

University of Science and Technology of China A dissertation for master s degree A Study on Cross-border M&A of Chinese Enterprises Author s Name: JIA 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 中 国 大 陆 企 业 境 外 并 购 研 究 作 者 姓 名 : 学 科 专 业 : 导 师 姓 名 : 完 成 时 间 : 蒋 果 管 理 科 学 与 工 程 鲁 炜 二 八 年 四 月 二 十 日 University of Science and Technology of China A dissertation for master

More information

3.1 num = 3 ch = 'C' 2

3.1 num = 3 ch = 'C' 2 Java 1 3.1 num = 3 ch = 'C' 2 final 3.1 final : final final double PI=3.1415926; 3 3.2 4 int 3.2 (long int) (int) (short int) (byte) short sum; // sum 5 3.2 Java int long num=32967359818l; C:\java\app3_2.java:6:

More information

第三章 国内外小组合作学习的应用情况

第三章 国内外小组合作学习的应用情况 摘 要 论 文 题 目 : 小 组 合 作 学 习 在 上 海 高 中 信 息 科 技 教 学 中 的 应 用 专 业 : 现 代 教 育 技 术 学 位 申 请 人 : 朱 翠 凤 指 导 教 师 : 孟 琦 摘 要 小 组 合 作 学 习 是 目 前 世 界 上 许 多 国 家 普 遍 采 用 的 一 种 富 有 创 意 的 教 学 理 论 与 策 略, 其 在 培 养 学 生 的 合 作 精

More information

Microsoft PowerPoint - Model Checking a Lazy Concurrent List-Based Set Algorithm.ppt [Compatibility Mode]

Microsoft PowerPoint - Model Checking a Lazy Concurrent List-Based Set Algorithm.ppt [Compatibility Mode] Model Checking a Lazy Concurrent List-Based Set Algorithm ZHANG Shaojie, LIU Yang National University of Singapore Agenda Introduction Background Ourapproach Overview Linearizabilitydefinition Modelinglanguage

More information

北 京 大 学

北 京 大 学 北 京 大 学 硕 士 研 究 生 培 养 方 案 ( 信 息 工 程 学 院 报 表 修 订 版 本 ) 一 级 学 科 名 称 专 业 名 称 计 算 机 科 学 与 技 术 计 算 机 应 用 技 术 专 业 代 码 081203 北 京 大 学 研 究 生 院 制 表 填 表 日 期 :2012 年 06 月 16 日 一 学 科 ( 专 业 ) 主 要 研 究 方 向 序 研 究 方 向

More information

白峰杉:数学的人文内涵与科技外延

白峰杉:数学的人文内涵与科技外延 目 录 会 议 信 息 第 三 届 并 行 结 构 算 法 与 编 程 国 际 研 讨 会 2 第 11 届 并 行 分 布 式 计 算 及 应 用 国 际 学 术 会 议 4 2010 华 人 数 学 家 国 际 会 议 5 第 三 届 全 国 计 算 机 数 学 学 术 会 议 6 会 议 纪 要 中 国 计 算 数 学 会 第 七 届 常 务 理 事 会 第 四 次 会 议 纪 要 10 第

More information

: : : :1996,??,,,,,,,, :,,,,, Goldsmith (1969) 35,, Shaw(1973) Gurley Shaw(1960), Demirg c2 Kunt Levin (2001) 150 (1992)

: : : :1996,??,,,,,,,, :,,,,, Goldsmith (1969) 35,, Shaw(1973) Gurley Shaw(1960), Demirg c2 Kunt Levin (2001) 150 (1992) ::1991 2007 :1991 2007 3 :1996,??,,,,,,,, :,,,,, Goldsmith (1969) 35,, Shaw(1973) Gurley Shaw(1960), Demirg c2 Kunt Levin (2001) 150 (1992) 1978 1991 ( Yi,1991),,, ;, (1996) 1978 1995, ( ),,(1996),, (

More information

~ ~ ~

~ ~ ~ 33 4 2014 467 478 Studies in the History of Natural Sciences Vol. 33 No. 4 2014 030006 20 20 N092 O6-092 A 1000-1224 2014 04-0467-12 200 13 Roger Bacon 1214 ~ 1292 14 Berthold Schwarz 20 Luther Carrington

More information

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 致 谢 文 学 是 我 们 人 类 宝 贵 的 精 神 财 富 两 年 半 的 硕 士 学 习 让 我 进 一 步 接 近 文 学,

More information

南華大學數位論文

南華大學數位論文 南 華 大 學 生 死 學 系 碩 士 論 文 國 中 學 生 地 獄 觀 之 研 究 The Study on the Imagination of Hell of Junior High School Students 研 究 生 : 陳 欣 徳 指 導 教 授 : 蔡 明 昌 博 士 中 華 民 國 一 百 零 一 年 六 月 Keep Going 讓 我 們 直 接 點 吧, 這 篇 論

More information

ç«−è¡£

ç«−è¡£ Lingnan University Digital Commons @ Lingnan University 考 功 集 ( 畢 業 論 文 選 粹 ) Department of Chinese 2002 竊 衣 Wai Man LAM Follow this and additional works at: http://commons.ln.edu.hk/chi_diss Recommended

More information

20

20 37 92 19 40 19 20 21 1 7 22 1/5 6/30 5/3030 23 24 25 26 1 2 27 1 2 28 29 30 5 8 8 3 31 32 33 34 35 36 37 38 39 A Study Investigating Elementary School Students Concept of the Unit in Fraction in Northern

More information

%

% 38 1 2014 1 Vol. 38No. 1 January 2014 51 Population Research 2010 2010 2010 65 100028 Changing Lineal Families with Three Generations An Analysis of the 2010 Census Data Wang Yuesheng Abstract In contemporary

More information

Microsoft Word - 07.docx

Microsoft Word - 07.docx 應 用 GeoGebra 數 學 軟 體 於 數 學 課 程 的 教 學 Using Dynamic Mathematical Software GeoGebra in Mathematical Course 姜 正 雄 Cheng-Hsiung Chiang 玄 奘 大 學 資 訊 管 理 學 系 Department of Information Management, Hsuan Chuang

More information

C/C++ 语言 - 循环

C/C++ 语言 - 循环 C/C++ Table of contents 7. 1. 2. while 3. 4. 5. for 6. 8. (do while) 9. 10. (nested loop) 11. 12. 13. 1 // summing.c: # include int main ( void ) { long num ; long sum = 0L; int status ; printf

More information

Theory of Groups is another course for undergraduates; and Module Theory will be a basic course of graduates). The main contents include the basic str

Theory of Groups is another course for undergraduates; and Module Theory will be a basic course of graduates). The main contents include the basic str 抽 象 代 数 课 程 教 学 大 纲 课 程 基 本 信 息 (Course Information) 课 程 代 码 (Course Code) * 学 时 MA20 (Credit Hours) 6 * 学 分 (Credits) * 课 程 名 称 抽 象 代 数 (Course Name) Abstract Algebra 课 程 性 质 (Course Type) 必 修 课 授 课 对

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

目 錄 附 件 4-1-1 休 憩 系 專 任 教 師 學 術 研 究 表 現 一 覽 表... I 附 件 4-3-1 真 理 大 學 休 閒 遊 憩 事 業 學 系 學 士 論 文 導 引... XIV 附 件 4-5-1 真 理 大 學 學 術 研 究 獎 勵 辦 法 與 真 理 大 學 補

目 錄 附 件 4-1-1 休 憩 系 專 任 教 師 學 術 研 究 表 現 一 覽 表... I 附 件 4-3-1 真 理 大 學 休 閒 遊 憩 事 業 學 系 學 士 論 文 導 引... XIV 附 件 4-5-1 真 理 大 學 學 術 研 究 獎 勵 辦 法 與 真 理 大 學 補 真 理 大 學 休 閒 遊 憩 事 業 學 系 102 年 第 二 週 期 系 所 評 鑑 項 目 四 附 件 資 料 學 術 與 專 業 研 究 日 期 :2013 年 4 月 8-9 日 1 目 錄 附 件 4-1-1 休 憩 系 專 任 教 師 學 術 研 究 表 現 一 覽 表... I 附 件 4-3-1 真 理 大 學 休 閒 遊 憩 事 業 學 系 學 士 論 文 導 引... XIV

More information