11_complex_3d

Size: px
Start display at page:

Download "11_complex_3d"

Transcription

1 Computer Graphics Complex 3D Hongxin Zhang State Key Lab of CAD&CG, Zhejiang University

2 General spline curves parametric curve basis functions P(t) = X i P i B i (t) t 2 [t 0,t 1 ) control pints Computer ZJU Hongxin Zhang, 2016

3 Bézier curve Bézier curve where, P i (i=0,1,,n) are control points. Bernstein basis

4 Bézier curve

5 Bézier curve Rational Bézier Curve where B i,n (t) is Bernstein basis, ω i is the weight at p i. It s a generalization of Bézier curve, which can express more curves, such as circle.

6 Bézier surface Bézier surface Bézier surface: where B i,n (u) 和 B j,m (v) Bernstein basis with n degree and m degree, respectively, (n+1) (m+1) P i,j (i=0,1,,n; j=0,1,,m) construct the control meshes.

7 Bézier surface normal vector of Bézier surface partial derivation of Bézier surface S(u,v): normal N(u,v) :

8 NURBS curve B-spline curve disadvantages of Bézier curve: 1. control points determine the degree of the curve. many control points means high degree. 2. It s global. A control point influences the whole curve. de Boor et al. replaced Bernstein basis with B-spline basis to generate B-spline curve.

9 NURBS curve B-spline curve: Where P 0, P 1,,P n are control points, u=[u 0 =a, u 1,, u i,, u n+k+1 =b].

10 B-spline basis Computer ZJU Hongxin Zhang, 2016

11 NURBS curve B-spline---de Boor algorithm to calculate the point of B-spline curve C(u) at u: 1. find the interval where u lies in : u [u j,u j+1 ); 2. curve in u [u j,u j+1 ) is only determined by P j-p, P j-p+1,, P j ; 3. calculate 4. = C(u)

12 NURBS curve Catmull-Clark and Doo-Sabin subdivision Start from Catmull-Clark rules Doo-Sabin rules:

13 B-spline surface (n+1) (m+1) control points: P i,j (Degrees of u, v: p, q); nodes: U=[u 0,u 1,,u n+p+1 ], V = [v 0,v 1,, v m+q+1 ], Then a tensor B-spline surface with degree p q : Computer ZJU Hongxin Zhang, 2016

14 NURBS surface NURBS (Non-uniform Rational B-spline) NURBS curves: 重节点

15 NURBS surface NURBS surface ω ij : weights

16 Sweeping

17 More complex objects? Challenge: surface continuity? Computer ZJU Hongxin Zhang, 2016

18 Homework 4 - Write a report on car shape design - In A4 paper, at least 2 pages - Major solution, processing pipeline - Key techniques and standard - bonus: how to render the shape Computer ZJU Hongxin Zhang, 2016

19 Polygonal Mesh

20 What is polygonal mesh? - A polygon mesh is a collection of vertices, edges and faces that defines the shape of a polyhedral object in 3D computer graphics and solid modeling Computer ZJU Hongxin Zhang, 2016

21 What is polygonal mesh? - A polygon mesh is a collection of vertices, edges and faces that defines the shape of a polyhedral object in 3D computer graphics and solid modeling Computer ZJU Hongxin Zhang, 2016

22 polygonal mesh representations Computer ZJU Hongxin Zhang, 2016

23 polygonal mesh representations Computer ZJU Hongxin Zhang, 2016

24 Computer ZJU Hongxin Zhang, 2016

25 Wavefront.obj file # List of Vertices, with (x,y,z[,w]) coordinates, w is optional and defaults to 1.0. v v # Texture coordinates, in (u,v [,w]) coordinates, these will vary between 0 and 1, w is optional and default to 0. vt [0] vt # Normals in (x,y,z) form; normals might not be unit.. vn vn # Parameter space vertices in ( u [,v] [,w] ) form; free form geometry statement ( see below ) vp vp # Face Definitions (see below) f f 3/1 4/2 5/3 f 6/4/1 3/5/3 7/6/5 f Computer ZJU Hongxin Zhang, 2016

26 Wavefront.obj file - Vertex positions - v, vt, vn - Face definitions - f v1 v2 v3 v f v1/vt1 v2/vt2 v3/vt f v1/vt1/vn1 v2/vt2/vn2 v3/vt3/vn f v1//vn1 v2//vn2 v3//vn Referencing materials - mtllib [external.mtl file name] - usemtl [material name] Computer ZJU Hongxin Zhang, 2016

27 Wavefront.obj file - Named objects and polygon groups are specified via the following tags. - o [object name] - g [group name] - Smooth shading across polygons is enabled by smoothing groups. - s # Smooth shading can be disabled as well. - s off -... Computer ZJU Hongxin Zhang, 2016

28 Subdivision surfaces

29 Chaiken (1974)

30

31 subdivision surface subdivision curves: starting from a set of points, generate new points in every step under some rules, when such step goes on infinitely, the points will be convergent to a smooth curve.

32 subdivision surface

33 细分曲 面的基本概念 是 一种过程式 ( 迭代 ) 的曲 面构造 方法 输 入 : 多边形 网格 => 控制 网格 输出 :a. 加密 网格 => 有限次迭代 [ 用于绘制 ] b. 连续曲 面 => 极限曲 面 [ 用于分析 ] 离散 连续 Computer ZJU Hongxin Zhang, 2016

34 Classical subdivision schemes Catmull-Clark surface. [Catmull 1978] Doo-Sabin surface. [Doo 1978] Loop s subdivision schemes. [Loop 1987] Butterfly subdivision schemes. [Dyn 1990] 离散 连续 Computer ZJU Hongxin Zhang, 2016

35 advantage of subdivision surface - topologically complex shape - stable; - easy to implement; - no need to merge between the surfaces - LOD Computer ZJU Hongxin Zhang, 2016

36 细分曲 面的基本步骤 细分操作 : 拓拓扑规则 : 加密采样, 重新构造 网格 几何规则 : 光顺 网格 Computer ZJU Hongxin Zhang, 2016

37 Loop subdivision surface 拓拓扑规则 : 怎样加密三 角 网格? 对分每条边, 并连接新顶点 将每个三 角形剖分成四个更更 小的三 角形 Computer ZJU Hongxin Zhang, 2016

38 Loop subdivision surface 几何规则 : 怎样放置新顶点的位置? 利利 用原始 网格中与新顶点相邻的顶点来做加权平 均 如果顶点的连接度不不是 6 该怎么办? Computer ZJU Hongxin Zhang, 2016

39 Loop subdivision surface 几何规则 : 怎样放置新顶点的位置? 奇异顶点处的规则 Computer ZJU Hongxin Zhang, 2016

40 Loop subdivision surface 怎样选择系数 Beta? 分析极限曲 面性质 与曲 面的连续性和光滑性相关 需要计算相关 ( 细分系数 ) 矩阵的特征结构 Computer ZJU Hongxin Zhang, 2016

41 Loop subdivision surface 细分结果可达到较好的连续性光顺性! Computer ZJU Hongxin Zhang, 2016

42 Subdivision schemes 各种不不同的细分 方法 不不同的处理理拓拓扑加密 方法 不不同的布置顶点位置 方法 逼近 v.s. 插值 Computer ZJU Hongxin Zhang, 2016

43 细分曲 面的基本思想 向上采样 割 角 平均 回插 - 补偿 Computer ZJU Hongxin Zhang, 2016

44 四边 网格上的拓拓扑规则 Catmull-Clark 型 Primal Dual Doo-Sabin 型 10/09/11 Math Dept. ZJU. 13

45 Doo-Sabin 型细分曲 面 10/09/11 Math Dept. ZJU. 14

46 subdivision surface Catmull-Clark and Doo-Sabin subdivision start from Catmull-Clark rules Doo-Sabin rules:

47 Catmull-Clark subdivision 面点模板 边点模板 顶点模板 10/09/11 Math Dept. ZJU. 15

48 subdivision surface Catmull-Clark subdivision surface:

49 subdivision surface Doo-Sabin surface

50 不不同细分曲 面的 比较

51 不不同细分曲 面的 比较

52 参考资料料 普林林斯顿 大学的课件 半静态回插细分 From Pixar, Geri s Game

53 Geri s Game Computer ZJU Hongxin Zhang, 2016

54 subdivision + random terrain generation

55 terrain generation Computer ZJU Hongxin Zhang, 2016

56 More complex 3D

57 Boolean operation Boolean union Boolean difference Boolean intersection Constructive Solid Geometry

58 Constructive Solid Geometry

59 Self-similar Self-affine Invariant fractal set Fractal

60 Fractal Julia Set

61 字符 : F 常数 : +, 公理 : F++F++F 规则 : F F F++F F F : 向前 - : 左转 60 + : 右转 60 L-system

62 L-system for tree

63 Sketch Tree Demo

64 procedure (script) modeling A lot of research Natural scene modeling City modeling (shape grammar) Amazing software nodebox v.s. processing

65 粒 子系统 Computer ZJU Hongxin Zhang, 2016

17 Prelight Apply Color Paint Vertex Color Tool Prelight Apply Color Paint Vertex Color Tool 242 Apply Color, Prelight Maya Shading Smooth

17 Prelight Apply Color Paint Vertex Color Tool Prelight Apply Color Paint Vertex Color Tool 242 Apply Color, Prelight Maya Shading Smooth 17 Prelight 233 234 242 Apply Color Paint Vertex Color Tool Prelight Apply Color Paint Vertex Color Tool 242 Apply Color, Prelight Maya Shading Smooth Shade All Custom Polygon DisplayOptions Color in Shaded

More information

Move Component Object selection Component selection UV Maya Hotkeys editor Maya USING MAYA POLYGONAL MODELING 55

Move Component Object selection Component selection UV Maya Hotkeys editor Maya USING MAYA POLYGONAL MODELING 55 3 55 62 63 Move Component 63 70 72 73 73 Object selection Component selection UV Maya Hotkeys editor Maya 55 USING MAYA POLYGONAL MODELING Maya: Essentials Maya Essentials F8 Ctrl F9 Vertex/Face F9 F10

More information

,,.,..., NURBS. : 2, B PDE. 3, PDE B., PDE. 2, Laplace-Beltrami Giaquinta-Hildebrandt. B PDE [1]). S = {x(u 1, u 2 ) R 3 : (u 1, u 2 ) D R 2 } g αβ =

,,.,..., NURBS. : 2, B PDE. 3, PDE B., PDE. 2, Laplace-Beltrami Giaquinta-Hildebrandt. B PDE [1]). S = {x(u 1, u 2 ) R 3 : (u 1, u 2 ) D R 2 } g αβ = G 1 B 1, 1 ( 1 LSEC,,,, 100190) B. Laplace-Beltrami Giaquinta-Hildebrandt, G 1 B. G 1. : B,,,. : TP391.7 :A 1, Bloor Wilson[3] (PDE),,., PDE., (MCF) PDE, ( [2, 7, 14])., MCF G 1, PDE( [6, 19, 22]),., B.

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

国家重点实验室建设与运行管理办法

国家重点实验室建设与运行管理办法 国 家 重 点 实 验 室 建 设 与 运 行 管 理 办 法 第 一 章 总 则 第 一 条 为 贯 彻 落 实 国 家 中 长 期 科 学 和 技 术 发 展 规 划 纲 要 (2006-2020 年 ), 规 范 和 加 强 国 家 重 点 实 验 室 ( 以 下 简 称 : 重 点 实 验 室 ) 的 建 设 和 运 行 管 理, 制 定 本 办 法 第 二 条 重 点 实 验 室 是 国

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

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

More information

第16卷 第2期 邯郸学院学报 2006年6月

第16卷 第2期                                邯郸学院学报                            2006年6月 第 18 卷 第 4 期 邯 郸 学 院 学 报 2008 年 12 月 Vol.18 No.4 Journal of Handan College Dec. 2008 赵 文 化 研 究 论 赵 都 邯 郸 与 赵 国 都 城 研 究 问 题 朱 士 光 ( 陕 西 师 范 大 学 历 史 地 理 研 究 所, 陕 西 西 安 710062) 摘 要 : 战 国 七 雄 之 一 的 赵 国 都 城

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

中文模板

中文模板 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

untitled

untitled 料 2-1 料 料 x, y, z 料 不 不 料濾 料 不 料 料 不 料 錄 料 2-1 a 料 2-1 b 2003 a 料 b 料 2-1 料 2003 料 料 行 料濾 料亂 濾 料 料 滑 料 理 料 2001 料 兩 理 料 不 TIN, Triangular Irregular Network 8 2-2 a 數 量 料 便 精 2003 料 行 理 料 立 狀 連 料 狀 立 料

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

幻灯片 1 次 世 代 手 游 的 探 讨 Speaker Kevin BY Art Director & idreamsky 第 一 部 分 次 世 代 手 游 的 探 索 和 制 作 1.Shader 2.Mesh 3.Animation 4.Lightmap 1.Shader 1.1Normal Map( 法 线 贴 图 ) 1.2Specular Mapping( 高 光 贴 图 ) 1.3Cube Map(

More information

地質調査研究報告/Bulletin of the Geological Survey of Japan

地質調査研究報告/Bulletin of the Geological Survey of Japan Shigeru Suto, Takayuki Inomata, Hisashi Sasaki and Sakae Mukoyama (2007) Data base of the volcanic ash fall distribution map of Japan. Bull. Geol. Surv. Japan, vol. 58(9/10), p.261-321, 8 figs, 2 tables,

More information

Microsoft Word - 生活禮儀柯友惠981

Microsoft Word - 生活禮儀柯友惠981 社 交 禮 儀 課 程 簡 介 第 一 節 : 接 待 與 拜 訪 禮 儀 學 習 禮 儀, 不 是 為 了 取 悅 別 人, 而 是 為 了 開 發 自 己 內 心 的 能 量, 來 展 現 得 體 的 風 範, 並 以 合 宜 的 舉 止 及 內 在 的 修 養 來 創 造 良 好 的 應 對 趨 勢, 讓 好 禮 儀 為 您 帶 來 好 人 緣 一 待 客 服 務 的 基 本 原 則 1. 以

More information

untitled

untitled Ogre Rendering System http://antsam.blogone.net AntsamCGD@hotmail.com geometry systemmaterial systemshader systemrendering system API API DirectX OpenGL API Pipeline Abstraction API Pipeline Pipeline configurationpipeline

More information

90 2011 7 1 90 90 90 * 30 1984 1989 4 * 2011 6 1993 1997 1992 1998 2003 5 2004 2007 2008 2010 2008 6 2011 6 * 33% 21% 19% 18% 3% 8 5% * 7 - - - 8 2011 6 * 1921 2011 90 90 90 90 90 1921 1949 1949 16 12

More information

目 录 第 一 章 电 力 行 业 内 部 控 制 操 作 指 南 概 述... 1 第 二 章 内 部 控 制 规 范 体 系 建 设 与 运 行... 11 第 三 章 内 部 环 境 建 设... 22 第 一 节 组 织 架 构... 22 第 二 节 发 展 战 略... 26 第 三 节

目 录 第 一 章 电 力 行 业 内 部 控 制 操 作 指 南 概 述... 1 第 二 章 内 部 控 制 规 范 体 系 建 设 与 运 行... 11 第 三 章 内 部 环 境 建 设... 22 第 一 节 组 织 架 构... 22 第 二 节 发 展 战 略... 26 第 三 节 附 件 电 力 行 业 内 部 控 制 操 作 指 南 ( 征 求 意 见 稿 ) 2014 年 8 月 目 录 第 一 章 电 力 行 业 内 部 控 制 操 作 指 南 概 述... 1 第 二 章 内 部 控 制 规 范 体 系 建 设 与 运 行... 11 第 三 章 内 部 环 境 建 设... 22 第 一 节 组 织 架 构... 22 第 二 节 发 展 战 略... 26 第 三

More information

信頼の水準約95%表記への

信頼の水準約95%表記への k y U ux i c i i uv m uδ V m1 uδ V m uδ V m3 uδ V m4 ur s Ω uδ R s Ω u ci s eff k U k u c y eff i u c y u1yuyu3yuny 4 4 uc y uc y n u y u y u y u y u y eff 4 4 4 4 4 i 1 3 n i1 i 1 3 n eff tt 95 eff k

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

穨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

Oracle 4

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

More information

2 g g g g g g g

2 g g g g g g g pjt@cis cis.pku.edu.cn 2 2224 2003-09 09-10 2 g g g g g g g 3 4 5 1.1 ; ;, \ \ \ \ ; ; 1.1 6 1.1 7 No illumination Constant colors Polygons Parallel light Diffuse reflection Free-form surfaces 1.1 Parallel

More information

绘制OpenCascade中的曲线

绘制OpenCascade中的曲线 在 OpenSceneGraph 中绘制 OpenCascade 的曲线 Draw OpenCascade Geometry Curves in OpenSceneGraph eryar@163.com 摘要 Abstract: 本文简要说明 OpenCascade 中几何曲线的数据, 并将这些几何曲线在 OpenSceneGraph 中绘制出来 关键字 KeyWords:OpenCascade Geometry

More information

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡 Tips of the Week 课 堂 上 的 英 语 习 语 教 学 ( 二 ) 2015-04-19 吴 倩 MarriottCHEI 大 家 好! 欢 迎 来 到 Tips of the Week! 这 周 我 想 和 老 师 们 分 享 另 外 两 个 课 堂 上 可 以 开 展 的 英 语 习 语 教 学 活 动 其 中 一 个 活 动 是 一 个 充 满 趣 味 的 游 戏, 另 外

More information

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg 上 海 外 国 语 大 学 SHANGHAI INTERNATIONAL STUDIES UNIVERSITY 硕 士 学 位 论 文 MASTER DISSERTATION 学 院 国 际 文 化 交 流 学 院 专 业 汉 语 国 际 教 育 硕 士 题 目 届 别 2010 届 学 生 陈 炜 导 师 张 艳 莉 副 教 授 日 期 2010 年 4 月 A VALIDATION STUDY

More information

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

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

More information

untitled

untitled 1 2 3 4 5 6 1 NURBS 3ds max 4 NURBS NURBS NURBS 3 Patch Mesh NURBS NURBS NURBS NURBS 4 NURBS 1.1.1 NURBS NURBS NURBS 3ds max 4 Create 1.1 10 1.1 NURBS 001.max 1 Create Sphere 1.2 2 1.2 2 Modify 3 1 NURBS

More information

編輯要旨 一 教育部為了協助本國失學民眾 新住民及 其他國外朋友 有系統的學習華語文的 聽 說 讀 寫 算等識字能力及跨文化 適應 以培養具有基本公民素養的終身學 習者 特別委託新北市政府教育局新住民 文教輔導科團隊編輯本教材 二 依據上述目的 本教材共有六冊 並分為 六級 分級及單元名稱詳如下表

編輯要旨 一 教育部為了協助本國失學民眾 新住民及 其他國外朋友 有系統的學習華語文的 聽 說 讀 寫 算等識字能力及跨文化 適應 以培養具有基本公民素養的終身學 習者 特別委託新北市政府教育局新住民 文教輔導科團隊編輯本教材 二 依據上述目的 本教材共有六冊 並分為 六級 分級及單元名稱詳如下表 基 本 識 字 教 材 第 2 冊 初 二 級 教 育 部 編 印 編輯要旨 一 教育部為了協助本國失學民眾 新住民及 其他國外朋友 有系統的學習華語文的 聽 說 讀 寫 算等識字能力及跨文化 適應 以培養具有基本公民素養的終身學 習者 特別委託新北市政府教育局新住民 文教輔導科團隊編輯本教材 二 依據上述目的 本教材共有六冊 並分為 六級 分級及單元名稱詳如下表 第一冊 第二冊 第三冊 第四冊 第五冊

More information

, ,

, , 87 1 1 2 1 2 2,600 27 32 10 50 1978 1985 1987 WTO 2003 10 1 2003 9 25 WTO 88 1978 50 1949 1966-1976 1978 1998 1985 1993 1996 1,032 608 424 740 419 321 2,600 27 32 10 50 70 89 1979 1985 1987 1986 1991 12

More information

θ 1 = φ n -n 2 2 n AR n φ i = 0 1 = a t - θ θ m a t-m 3 3 m MA m 1. 2 ρ k = R k /R 0 5 Akaike ρ k 1 AIC = n ln δ 2

θ 1 = φ n -n 2 2 n AR n φ i = 0 1 = a t - θ θ m a t-m 3 3 m MA m 1. 2 ρ k = R k /R 0 5 Akaike ρ k 1 AIC = n ln δ 2 35 2 2012 2 GEOMATICS & SPATIAL INFORMATION TECHNOLOGY Vol. 35 No. 2 Feb. 2012 1 2 3 4 1. 450008 2. 450005 3. 450008 4. 572000 20 J 101 20 ARMA TU196 B 1672-5867 2012 02-0213 - 04 Application of Time Series

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 - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade]

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade] SSBSE 2015, Bergamo Transformed Search Based Software Engineering: A New Paradigm of SBSE He JIANG, Zhilei Ren, Xiaochen Li, Xiaochen Lai jianghe@dlut.edu.cn School of Software, Dalian Univ. of Tech. Outline

More information

藍牙網路在資訊家電的應用

藍牙網路在資訊家電的應用 崑 山 科 技 大 學 資 訊 工 程 系 專 題 製 作 報 告 ANDROID 3D 推 箱 子 遊 戲 ANDROID 3D - BOXGAME 學 生 : 黃 咸 嘉 陳 政 男 郭 撫 龍 指 導 老 師 : 李 宗 儒 中 華 民 國 一 百 一 年 五 月 i ANDROID 3D 推 箱 子 遊 戲 ANDROID 3D - BOXGAME 學 生 : 黃 咸 嘉 Student:

More information

1

1 RUC-BK-113-110204-11271370 2001 11271370 1 With the promotion of the economic system reform of China, enterprise group that set up on the basis of the modern enterprise system become the mainstay of the

More information

广 州 蓝 皮 书 社 会 保 障 关 键 词 : 广 州 社 会 保 障 社 会 保 险 社 会 救 助 社 会 福 利 社 会 保 障 体 系 由 社 会 救 助 社 会 保 险 社 会 福 利 住 房 保 障 四 大 系 统 以 及 慈 善 事 业 和 其 他 补 充 保 险 构 成 在 主

广 州 蓝 皮 书 社 会 保 障 关 键 词 : 广 州 社 会 保 障 社 会 保 险 社 会 救 助 社 会 福 利 社 会 保 障 体 系 由 社 会 救 助 社 会 保 险 社 会 福 利 住 房 保 障 四 大 系 统 以 及 慈 善 事 业 和 其 他 补 充 保 险 构 成 在 主 2013 年 广 州 社 会 保 障 发 展 报 告 总 报 告 General Report 1 2013 年 广 州 社 会 保 障 发 展 报 告 广 州 市 社 会 科 学 院 课 题 组 摘 要 : 广 州 社 会 保 障 在 覆 盖 面 保 障 水 平 保 障 体 系 建 设 领 域 取 得 明 显 进 展 本 报 告 通 过 分 析 广 州 社 会 保 障 发 展 的 现 状, 指 出

More information

untitled

untitled Tiger Pattern In Clothes Of Centurial Plain Region Of China I Abstract Abstract Tiger Pattern In Clothes Of Centurial Plain Region Of China Master: Sun Ning Ning Tutor: Zhang Jing Qiong MajorClothing

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

27 10 Vol. 27 No , : Oct., 2015 [4,6-7] [3,5,8-10] [1] [11-13] [7] [14] [15-16] 1 [17] [18] Loading v

27 10 Vol. 27 No , : Oct., 2015 [4,6-7] [3,5,8-10] [1] [11-13] [7] [14] [15-16] 1 [17] [18] Loading v 27 10 Vol. 27 No. 10 2015 10 Journal of System Simulation Oct., 2015 1 2 2 1 1 1. 363000 2. 361005 7 10% TP391.9 A 1004-731X (2015) 10-2546-08 DOI:10.16182/j.cnki.joss.2015.10.047 Research on Simulation

More information

HCD0174_2008

HCD0174_2008 Reliability Laboratory Page: 1 of 5 Date: December 23, 2008 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified

More information

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi U17 10220 UDC624 Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candidate:Chen Hao Tutor: Xue Jinghong

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Curve and Surface Modeling Teacher: A.Prof. Chengying Gao ( 高成英 ) E-mail: mcsgcy@mail.sysu.edu.cn School of Data and Computer Science Outline Interpolation and Approimation Curve Modeling Parametric curve

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

untitled

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

More information

唐彪《讀書作文譜》述略

唐彪《讀書作文譜》述略 唐 彪 讀 書 作 文 譜 選 析 唐 彪 讀 書 作 文 譜 選 析 * 呂 湘 瑜 龍 華 科 技 大 學 通 識 教 育 中 心 摘 要 唐 彪 乃 清 初 浙 江 名 儒, 其 讀 書 作 文 譜 簡 潔 地 呈 現 了 對 於 讀 書 作 文 以 及 文 學 的 種 種 看 法 其 以 為 無 論 是 讀 書 或 者 作 文, 都 必 須 以 靜 凝 神 為 出 發 點, 先 求 得 放

More information

1.3

1.3 Software Engineering 软 件 工 程 Prof. Mei Hong 洪 玫 College of Computer Science and Software Engineering 四 川 大 学 计 算 机 ( 软 件 学 院 ) E-Mail: hongmei@scu.edu.cn Office: B502, Second Laboratory Building, Jiangan

More information

Untitled-3

Untitled-3 SEC.. Separable Equations In each of problems 1 through 8 solve the given differential equation : ü 1. y ' x y x y, y 0 fl y - x 0 fl y - x 0 fl y - x3 3 c, y 0 ü. y ' x ^ y 1 + x 3 x y 1 + x 3, y 0 fl

More information

Microsoft PowerPoint - 20100304 台南一中-99高中宣導簡報

Microsoft PowerPoint - 20100304 台南一中-99高中宣導簡報 國 立 臺 灣 科 技 大 學 您 也 許 不 知 道 的 台 科 大 國 立 台 南 一 中 2010/3/4 NATIONAL TAIWAN UNIVERSITY OF SCIENCE AND TECHNOLOGY 主講 機械系教授兼全校不分系系主任 王朝正 三年17班 民國67年 畢業 NATIONAL TAIWAN UNIVERSITY OF SCIENCE AND TECHNOLOGY 您

More information

76 34 2. 1. 1 Fig. 1 1 a-a b-b a-a σ ma = 74. 4 MPa σ a = 15. 74 MPa σ 0a =90. 15 MPa 0. 9 σ t =135 MPa b-b σ mb = 21. 77 MPa τ b = 13. 789 MPa σ 0b =

76 34 2. 1. 1 Fig. 1 1 a-a b-b a-a σ ma = 74. 4 MPa σ a = 15. 74 MPa σ 0a =90. 15 MPa 0. 9 σ t =135 MPa b-b σ mb = 21. 77 MPa τ b = 13. 789 MPa σ 0b = 34 11 2012 11 SHIP SCIENCE AND TECHNOLOGY Vol. 34 No. 11 Nov. 2012 0 430064 GB150-98 ASME THR3 +. 4 A 1672-7649 2012 11-0075 - 07 doi 10. 3404 /j. issn. 1672-7649. 2012. 11. 017 Stress and fatigue analysis

More information

(2002) Gartner Group Toelle and Tersine(1989) VMI (1998) (VMI,Vender-Managed Inventory) (2003) (VMI,Vender-Managed Inventory) VMI AHP VMI - 133

(2002) Gartner Group Toelle and Tersine(1989) VMI (1998) (VMI,Vender-Managed Inventory) (2003) (VMI,Vender-Managed Inventory) VMI AHP VMI - 133 ISM AHP VMI emily.1-777@yahoo.com.tw yowmow@mail.thu.edu.tw VMI ISM VMI VMI VMI VMI satty 1980 Analytic Hierarchy Process, AHP VMI ISM Abstract This research wants to study the electronic industry mainly

More information

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63>

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63> 運 用 多 媒 體 製 作 華 文 補 充 教 材 江 惜 美 銘 傳 大 學 應 用 中 文 系 chm248@gmail.com 摘 要 : 本 文 旨 在 探 究 如 何 運 用 多 媒 體, 結 合 文 字 聲 音 圖 畫, 製 作 華 文 補 充 教 材 當 我 們 在 進 行 華 文 教 學 時, 往 往 必 須 透 過 教 案 設 計, 並 製 作 補 充 教 材, 方 能 使 教 學

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

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

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

More information

<4D6963726F736F667420576F7264202D203338B4C12D42A448A4E5C3C0B34EC3FE2DAB65ABE1>

<4D6963726F736F667420576F7264202D203338B4C12D42A448A4E5C3C0B34EC3FE2DAB65ABE1> ϲ ฯ र ቑ ጯ 高雄師大學報 2015, 38, 63-93 高雄港港史館歷史變遷之研究 李文環 1 楊晴惠 2 摘 要 古老的建築物往往承載許多回憶 也能追溯某些歷史發展的軌跡 位於高雄市蓬 萊路三號 現為高雄港港史館的紅磚式建築 在高雄港三號碼頭作業區旁的一片倉庫 群中 格外搶眼 這棟建築建成於西元 1917 年 至今已將近百年 不僅躲過二戰戰 火無情轟炸 並保存至今 十分可貴 本文透過歷史考證

More information

<4D6963726F736F667420576F7264202D20D5E3BFC6B7A2CCF5A1B232303135A1B3313430BAC5B9D8D3DAB9ABB2BC32303135C4EACAA1BCB6B8DFD0C2BCBCCAF5C6F3D2B5D1D0BEBFBFAAB7A2D6D0D0C4C8CFB6A8BDE1B9FBB5C4CDA8D6AA2E646F63>

<4D6963726F736F667420576F7264202D20D5E3BFC6B7A2CCF5A1B232303135A1B3313430BAC5B9D8D3DAB9ABB2BC32303135C4EACAA1BCB6B8DFD0C2BCBCCAF5C6F3D2B5D1D0BEBFBFAAB7A2D6D0D0C4C8CFB6A8BDE1B9FBB5C4CDA8D6AA2E646F63> 浙 江 省 科 学 技 术 厅 文 件 浙 科 发 条 2015 140 号 浙 江 省 科 学 技 术 厅 关 于 公 布 2015 年 省 级 高 新 技 术 企 业 研 究 开 发 中 心 认 定 结 果 的 通 知 各 市 县 ( 市 区 ) 科 技 局 ( 委 ), 各 有 关 单 位 : 根 据 浙 江 省 高 新 技 术 企 业 研 究 开 发 中 心 管 理 办 法 ( 浙 科 发

More information

餐 飲 業 營 業 額 增 幅 最 大 創 下 史 上 新 經 濟 部 今 天 公 布 8 月 批 發 零 售 與 餐 飲 業 動 態 調 查 結 果, 總 金 額 1 兆 1560 億 元, 創 下 88 年 來 單 月 第 3 高 紀 錄, 年 增 率 為 6.34%, 其 飲 業 營 業 額

餐 飲 業 營 業 額 增 幅 最 大 創 下 史 上 新 經 濟 部 今 天 公 布 8 月 批 發 零 售 與 餐 飲 業 動 態 調 查 結 果, 總 金 額 1 兆 1560 億 元, 創 下 88 年 來 單 月 第 3 高 紀 錄, 年 增 率 為 6.34%, 其 飲 業 營 業 額 我 的 年 度 行 銷 計 畫 及 促 銷 操 規 劃 參 考 書 餐 飲 業 營 業 額 增 幅 最 大 創 下 史 上 新 經 濟 部 今 天 公 布 8 月 批 發 零 售 與 餐 飲 業 動 態 調 查 結 果, 總 金 額 1 兆 1560 億 元, 創 下 88 年 來 單 月 第 3 高 紀 錄, 年 增 率 為 6.34%, 其 飲 業 營 業 額 增 幅 最 大,8 月 營 業 額

More information

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

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

More information

Microsoft Word - 論文封面-980103修.doc

Microsoft Word - 論文封面-980103修.doc 淡 江 大 學 中 國 文 學 學 系 碩 士 在 職 專 班 碩 士 論 文 指 導 教 授 : 呂 正 惠 蘇 敏 逸 博 士 博 士 倚 天 屠 龍 記 愛 情 敘 事 之 研 究 研 究 生 : 陳 麗 淑 撰 中 華 民 國 98 年 1 月 淡 江 大 學 研 究 生 中 文 論 文 提 要 論 文 名 稱 : 倚 天 屠 龍 記 愛 情 敘 事 之 研 究 頁 數 :128 校 系 (

More information

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/ Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University hjzhang001@gmail.com 508 YiFu Lou talk 06/04/2010 - Page 1 Outline 508 YiFu Lou talk 06/04/2010

More information

untitled

untitled 51Testing Diana LI Xbox Xbox Live Fidelity Investments Office Server group Xbox Expedia Inc ( elong ) 1996 1996. bug break - 5Ws bug. Trust No One) QA Function Assignment Checking Timing Build/Package/Merge

More information

有 不 同 想 法 馬 上 記 錄 下 來, 作 為 寫 作 和 較 特 殊 題 型 的 答 題 材 料 把 握 這 四 到, 再 加 上 考 試 用 書 的 重 點 整 理, 搭 配 服 用, 讓 課 文 與 你 不 再 有 距 離 2. 考 試 成 績 好 差, 心 情 也 好 差, 可 不 可

有 不 同 想 法 馬 上 記 錄 下 來, 作 為 寫 作 和 較 特 殊 題 型 的 答 題 材 料 把 握 這 四 到, 再 加 上 考 試 用 書 的 重 點 整 理, 搭 配 服 用, 讓 課 文 與 你 不 再 有 距 離 2. 考 試 成 績 好 差, 心 情 也 好 差, 可 不 可 國 文 科 讀 書 分 享 楊 欣 蓓 老 師 我 有 我 的 路, 有 我 的 夢, 夢 中 的 那 個 世 界, 甘 講 伊 是 一 場 空 還 記 得 高 三 時, 老 師 常 常 覺 得 自 己 就 像 耳 機 裡 播 放 的 憨 人, 天 天 聽 著 五 月 天 唱 出 迷 惘, 卻 還 是 無 法 為 有 些 煩 躁 不 安 的 生 活 找 出 穩 定 的 著 力 點, 老 師 希 望

More information

( ) 休 閒 家 具 迴 慰 104 級 日 朝 陽 科 技 大 學 工 業 設 計 系 Labyrinth II

( ) 休 閒 家 具 迴 慰 104 級 日 朝 陽 科 技 大 學 工 業 設 計 系 Labyrinth II 朝 陽 科 技 大 學 2015 年 工 業 設 計 系 專 題 設 計 報 告 書 休 閒 家 具 - 迴 慰 指 導 教 授 : 曾 永 玲 設 計 者 : 徐 雅 玫 中 華 民 國 一 四 年 六 月 二 號 Labyrinth I ( ) 休 閒 家 具 迴 慰 104 級 日 朝 陽 科 技 大 學 工 業 設 計 系 Labyrinth II 朝 陽 科 技 大 學 工 業 設 計 系

More information

Journal of Northwestern Polytechnical University Apr. Vol No. 2 ICM ICM ICM ICM ICM ICM TP A

Journal of Northwestern Polytechnical University Apr. Vol No. 2 ICM ICM ICM ICM ICM ICM TP A 2012 4 30 2 Journal of Northwestern Polytechnical University Apr. Vol. 30 2012 No. 2 ICM 710072 ICM ICM ICM ICM ICM TP391. 41 A 1000-2758 2012 02-0201-05 6 2001 Kinser Johnson ICM intersecting cortical

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

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

余德浩诗词

余德浩诗词 余德浩诗词 共 722 首 其中夕照新篇 436 首 2016 年 35 首 2015 年 81 首 2014 年 59 首 2013 年 64 首 2012 年 63 首 2011 年 79 首 2010 年 55 首 科苑情怀 1978-2009 年 39 首 青春足迹 1964-1977 年 241 首 自由体长诗 6 首 夕照新篇 2010-2016 年 读网络奇文随感三首 2016 年 5

More information

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

國立中山大學學位論文典藏.PDF Mina MBA91. 91 6 Abstract This research describes the value chain development of Taiwan foundry industry s investment in China and analyzes how the foundry firm establishes its value chain and strategy

More information

Text 文字输入功能 , 使用者可自行定义文字 高度, 旋转角度 , 行距 , 字间距离 和 倾斜角度。

Text 文字输入功能 , 使用者可自行定义文字  高度, 旋转角度 , 行距 , 字间距离 和 倾斜角度。 GerbTool Wise Software Solution, Inc. File New OPEN CLOSE Merge SAVE SAVE AS Page Setup Print Print PreView Print setup (,, IMPORT Gerber Wizard Gerber,Aperture Gerber Gerber, RS-274-D, RS-274-X, Fire9000

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

南華大學數位論文

南華大學數位論文 南華大學 碩士論文 中華民國九十五年六月十四日 Elfin Excel I II III ABSTRACT Since Ming Hwa Yuan Taiwanese Opera Company started to cooperate with the Chinese orchestra, the problem of how the participation of Chinese music

More information

92

92 * ** ** 9 92 % 80.0 70.0 60.0 50.0 40.0 30.0 20.0 0.0 0.0 % 60.0 50.0 40.0 30.0 20.0 0.0 0.0 990 2000 200 2002 2003 2004 2005 2006 2007 2008 2009 200 978 979 980 98 982 983 984 985 986 987 988 989 990

More information

85% NCEP CFS 10 CFS CFS BP BP BP ~ 15 d CFS BP r - 1 r CFS 2. 1 CFS 10% 50% 3 d CFS Cli

85% NCEP CFS 10 CFS CFS BP BP BP ~ 15 d CFS BP r - 1 r CFS 2. 1 CFS 10% 50% 3 d CFS Cli 1 2 3 1. 310030 2. 100054 3. 116000 CFS BP doi 10. 13928 /j. cnki. wrahe. 2016. 04. 020 TV697. 1 A 1000-0860 2016 04-0088-05 Abandoned water risk ratio control-based reservoir pre-discharge control method

More information

目 錄 壹 青 輔 會 結 案 附 件 貳 活 動 計 劃 書 參 執 行 內 容 一 教 學 內 容 二 與 當 地 教 師 教 學 交 流 三 服 務 執 行 進 度 肆 執 行 成 效 一 教 學 課 程 二 與 當 地 教 師 教 學 交 流 三 服 務 滿 意 度 調 查 伍 服 務 檢

目 錄 壹 青 輔 會 結 案 附 件 貳 活 動 計 劃 書 參 執 行 內 容 一 教 學 內 容 二 與 當 地 教 師 教 學 交 流 三 服 務 執 行 進 度 肆 執 行 成 效 一 教 學 課 程 二 與 當 地 教 師 教 學 交 流 三 服 務 滿 意 度 調 查 伍 服 務 檢 2 0 1 0 年 靜 宜 青 年 國 際 志 工 泰 北 服 務 成 果 報 告 指 導 單 位 : 行 政 院 青 年 輔 導 委 員 會 僑 務 委 員 會 主 辦 單 位 : 靜 宜 大 學 服 務 學 習 發 展 中 心 協 力 單 位 : 靜 宜 大 學 師 資 培 育 中 心 財 團 法 人 台 灣 明 愛 文 教 基 金 會 中 華 民 國 九 十 九 年 九 月 二 十 四 日 目

More information

基于矩阵分解和矩阵变换的多义词向量研究

基于矩阵分解和矩阵变换的多义词向量研究 hyshi@pku.edu.cn 2018 6 9 Content 1 PCA VS. RPCA 2 2 3 [1] star s1 star s2 star s3 algorithm s1 algorithm s2 stars, movie, song, MVP stars, award, eagle, two-time supergiant, constellation, aurigae hash,

More information

Microsoft Word - A201210-60_1349949005.doc

Microsoft Word - A201210-60_1349949005.doc 5 10 15 20 25 一 种 针 对 在 线 旅 游 线 路 网 页 判 别 算 法 的 研 究 与 实 现 徐 显 炼, 郭 燕 慧 ( 北 京 邮 电 大 学 信 息 安 全 中 心, 北 京 100876) 摘 要 : 随 着 近 年 来 在 线 旅 游 业 的 快 速 发 展, 在 线 旅 游 搜 索 引 擎 己 经 成 为 当 前 搜 索 引 擎 发 展 的 一 个 热 门 方 向

More information

入 指 令 如 : 鍵 盤 鼠 標 多 點 觸 控 重 力 感 應 陀 螺 儀 等 4. 圖 形 用 戶 接 口 掌 握 引 擎 API 中 GUI 與 GUILayout 類 中 方 法 和 變 量 的 使 用, 能 夠 通 過 GUI Skin 為 應 用 的 界 面 定 制 不 同 風 格 主

入 指 令 如 : 鍵 盤 鼠 標 多 點 觸 控 重 力 感 應 陀 螺 儀 等 4. 圖 形 用 戶 接 口 掌 握 引 擎 API 中 GUI 與 GUILayout 類 中 方 法 和 變 量 的 使 用, 能 夠 通 過 GUI Skin 為 應 用 的 界 面 定 制 不 同 風 格 主 Unity 專 業 能 力 認 證 (Unity Certified Professional) 應 考 須 知 壹 閱 讀 大 綱 主 題 一 : 數 字 媒 體 基 礎 知 識 1. 2D 圖 形 知 識 熟 悉 常 用 位 圖 數 據 的 結 構 和 格 式 其 中 包 括 像 素 數 據 顏 色 的 值 與 通 道 的 概 念 2. 3D 圖 形 學 相 關 知 識 a) 理 解 向 量 的

More information

黃素卿教授_兩個華裔女性的跨國旅程_.doc

黃素卿教授_兩個華裔女性的跨國旅程_.doc 1 As I haven t finished reading Tan s other novels, The Hundred Secret Senses and The Bone Setter s Daughter, I m not able to comment on them and am only referring to her first two novels in this paper.

More information

1對外華語文詞彙教學的策略研究_第三次印).doc

1對外華語文詞彙教學的策略研究_第三次印).doc 37 92 1 16 1 2 3 4 5 6 7 8????? 9????????? 10???????????????????? 11? 12 13 14 15 16 The Strategy Research of Teaching Chinese as a Second Language Li-Na Fang Department of Chinese, National Kaohsiung

More information

33 3 2014 285 297 Studies in the History of Natural Sciences Vol. 33 No. 3 2014 210008 N092 P1-092 A 1000-0224 2014 03-0285-13 0 1437 ~ 1442 1 1261 1931 1 2 2014-03-12 2014-05-09 1943 1971 11020302 286

More information

通 过 厂 变 带 电, 这 种 设 计 减 少 了 机 组 自 带 厂 用 电 负 荷 能 力, 降 低 了 锅 炉 满 足 FCB 时 最 低 稳 燃 工 况, 同 时 造 成 燃 烧 调 整 量 加 大 本 电 厂 在 FCB 试 验 时, 电 泵 不 联 启, 始 终 保 持 汽 泵 运 行

通 过 厂 变 带 电, 这 种 设 计 减 少 了 机 组 自 带 厂 用 电 负 荷 能 力, 降 低 了 锅 炉 满 足 FCB 时 最 低 稳 燃 工 况, 同 时 造 成 燃 烧 调 整 量 加 大 本 电 厂 在 FCB 试 验 时, 电 泵 不 联 启, 始 终 保 持 汽 泵 运 行 火 电 机 组 小 岛 运 行 工 况 分 析 刘 伟 东 方 电 气 股 份 有 限 公 司, 成 都 610036 摘 要 : 目 前 执 行 的 对 外 火 电 工 程 合 同 中, 不 管 装 机 大 小, 大 部 分 都 要 求 机 组 验 收 时 完 成 小 岛 运 行 试 验 ( 即 FCB 或 House load operation), 并 作 为 重 要 的 验 收 条 件 基

More information

中华人民共和国时期\(1952年\)

中华人民共和国时期\(1952年\) (1952 ) 1952 1 7 1 15 1000 1 27 4 1 29 1 2 21 8 3 5 21 1 23 8 3 16 1951 3 2 1980 1984 3 700 300 1953 1 4 7 710 710 47 70% 2 4 10 25 2.1836 4 14 4 15 1952 4 4 5 14 3 6 8 3 6 11 14 6 18 500 478% 6 20 6 26

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

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

西安讲座-体视学基本问题与注意事项pdf.ppt

西安讲座-体视学基本问题与注意事项pdf.ppt (2012.12. ) 0817 0817-2242778E-mailzwyang@nsmc.edu.cn http:// http://www.nsmc.edu.cn/forum/stereology/ Essential procedures of stereological (morphometric( morphometric) ) study / [.... ] [ ] [ ] [ ] 1

More information

untitled

untitled 1~34 2004 年 12 律 劉 * 類 狀 律 利 類 聯 參 不 陸 論 93.09.30 A 93.10.28 B 93.10.29 * 律 見 1 年 度 度 更 力 度 不 類 類 不 2 年 論 度 六 狀 律 利 六 參 立 行 料 料 參 錄 參 見 來 念 料 論 不 1 1 林 拠 3 類 度 行 六 2 兩 論 不 狀 律 利 類 說 ( ) 1. 若 類 念 年 老 罹

More information

摘要

摘要 國 立 高 雄 師 範 大 學 客 家 文 化 研 究 所 碩 士 論 文 客 家 文 學 中 的 女 性 形 象 與 主 體 敘 事 Female Image and Self Narration in Hakka Literature 指 導 教 授 : 吳 中 杰 博 士 研 究 生 : 林 惠 珊 撰 中 華 民 國 九 十 九 年 七 月 本 論 文 獲 行 政 院 客 家 委 員 會 99

More information

大纲正文.doc

大纲正文.doc 高 分 子 专 业 导 论 教 学 大 纲 学 时 :8 学 分 :0.5 教 学 大 纲 说 明 一 课 程 的 目 的 与 任 务 使 学 生 了 解 高 分 子 课 程 设 置 体 系 规 律, 高 分 子 科 学 的 历 史 现 状 和 发 展 趋 势, 认 识 高 分 子, 初 步 掌 握 与 高 分 子 材 料 工 程 相 关 的 基 本 术 语 和 概 念, 掌 握 专 业 学 习 方

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

Shanghai International Studies University A STUDY ON SYNERGY BUYING PRACTICE IN ABC COMPANY A Thesis Submitted to the Graduate School and MBA Center I

Shanghai International Studies University A STUDY ON SYNERGY BUYING PRACTICE IN ABC COMPANY A Thesis Submitted to the Graduate School and MBA Center I 上 海 外 国 语 大 学 工 商 管 理 硕 士 学 位 论 文 ABC 中 国 食 品 公 司 的 整 合 采 购 研 究 学 科 专 业 : 工 商 管 理 硕 士 (MBA) 作 者 姓 名 :0113700719 指 导 教 师 : 答 辩 日 期 : 2013 年 12 月 上 海 外 国 语 大 学 二 一 四 年 一 月 Shanghai International Studies

More information

HC20131_2010

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

More information

汉语口语考试

汉语口语考试 自 动 化 汉 语 口 语 考 试 研 发 与 思 考 Research and Thoughts of Automated Test of Spoken Chinese 北 京 大 学 李 晓 琪 Peking University Li Xiaoqi 2012 年 4 月 April 2012 项 目 概 述 Project Overview 简 介 (Brief Introduction):

More information

PowerPoint 簡報

PowerPoint 簡報 測 試 大 百 科 您 測 對 了 沒? 1 吳 尚 文 Sherry Wu Sherry.wu@iisigroup.com 經 歷 : 2013 資 拓 宏 宇 CMMI ML3 ATM 2012 資 拓 宏 宇 軟 體 委 外 事 業 處 經 理 ( 現 ) 2010 宏 瞻 資 訊 MIS 經 理 / ISO20000 資 服 代 表 2009 宏 瞻 資 訊 PM 部 門 經 理 2008

More information

file:///E|/软件学习资料/HyperWorks/hyperworks学习捷径总结/Hypermesh总结——几何清理篇.txt

file:///E|/软件学习资料/HyperWorks/hyperworks学习捷径总结/Hypermesh总结——几何清理篇.txt 1 geometry clean 中 出 现 的 黄 色 边 界 线 表 示 什 么 意 思? 表 示 共 享 边, 三 个 或 者 三 个 以 上 的 面 共 同 的 边 界 2 HM 中 有 什 么 工 具 可 以 补 面 的? edit surface->surface filler 除 了 edit surface->surface filler 外, 还 可 以 用 spline,drag,sweep

More information

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

國立中山大學學位論文典藏.PDF Octopus Cistopus Geomorphometric study of Octopus and Cistopus (Cephalopoda: Octopodidae) based on landmarks of beaks : : i Octopus ii iii iv v 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

More information

rights and interests of doctors and patients. But it is insufficient jurisprudential basis and legitimacy crisis of legal forms through the form of mi

rights and interests of doctors and patients. But it is insufficient jurisprudential basis and legitimacy crisis of legal forms through the form of mi 1 Vol. 3 6 No. 1 36 2 0 1 8 1 Hebei Law Science Jan. 2 0 1 8 DOI 10. 16494 /j. cnki. 1002-3933. 2018. 01. 011 511436 DF36 A 1002-3933 2018 01-0117-13 Study on the Jurisprudential Basis on the Implementation

More information

國立中央大學圖書館 碩博士論文電子檔授權書 (101 年 9 月最新修正版) 本授權書授權本人撰寫之碩/博士學位論文全文電子檔(不包含紙本 詳備註 1 說 明) 在 國立中央大學圖書館博碩士論文系統 (以下請擇一勾選) ( )同意 (立即開放) ( )同意 (請於西元 ( )不同意 原因是 年 月

國立中央大學圖書館 碩博士論文電子檔授權書 (101 年 9 月最新修正版) 本授權書授權本人撰寫之碩/博士學位論文全文電子檔(不包含紙本 詳備註 1 說 明) 在 國立中央大學圖書館博碩士論文系統 (以下請擇一勾選) ( )同意 (立即開放) ( )同意 (請於西元 ( )不同意 原因是 年 月 本論文獲 客家委員會 103 年客家研究優良博碩士論文獎助 國 立 中 央 大 學 客家語文暨社會科學學系客家語文碩士班 碩 士 論 文 研 究 生 許宏勛 指導教授 黃菊芳 博士 中 華 民 國 103 年 6 月 國立中央大學圖書館 碩博士論文電子檔授權書 (101 年 9 月最新修正版) 本授權書授權本人撰寫之碩/博士學位論文全文電子檔(不包含紙本 詳備註 1 說 明) 在 國立中央大學圖書館博碩士論文系統

More information

四 本 學 期 程 架 構 : (1) 學 活 流 程 與 策 略 視 聽 故 事 時 事 節 令 生 活 問 題 預 習 單 朗 讀 問 答 討 論 討 論 理 解 欣 賞 想 像 練 習 章 結 構 敘 寫 技 巧 修 辭 要 領 仿 作 造 字 原 理 字 義 釐 清 字 音 字 形 辨 析

四 本 學 期 程 架 構 : (1) 學 活 流 程 與 策 略 視 聽 故 事 時 事 節 令 生 活 問 題 預 習 單 朗 讀 問 答 討 論 討 論 理 解 欣 賞 想 像 練 習 章 結 構 敘 寫 技 巧 修 辭 要 領 仿 作 造 字 原 理 字 義 釐 清 字 音 字 形 辨 析 臺 北 縣 瓜 山 國 民 小 學 99 學 年 度 六 年 級 國 語 領 域 程 計 畫 設 計 者 : 劉 美 君 林 純 慧 第 1 學 期 一 本 領 域 每 週 學 習 節 數 (5) 節, 銜 接 或 補 強 節 數 (2) 節, 本 學 期 共 (14) 節 二 本 學 期 學 習 目 標 : (1) 培 養 學 生 擁 有 喜 愛 學 習 與 崇 高 氣 節 的 人 生 觀 (2)

More information

72 (2001) group waves. Key words: Correlation coefficient for consecutive wave heights, mean run length (1993) (1996) (1998) (1999) (1993) (

72 (2001) group waves. Key words: Correlation coefficient for consecutive wave heights, mean run length (1993) (1996) (1998) (1999) (1993) ( (2001) 1 1 71-82 71 1 2 3 1. chtsai@mail.ntou.edu.tw 2. 3. hsiang@mail.ihmt.gov.tw 1998 9 500 (mean run length) Group waves and dangerous waves at the coast Tsai Cheng-Han Lin Yin-Chern Tseng Hsiang-Mao

More information