Two analytical 2d line intersection in OpenCASCADE Abstract. OpenCASCADE geometric tools provide algorithms to calculate the intersectio

Size: px
Start display at page:

Download "Two analytical 2d line intersection in OpenCASCADE Abstract. OpenCASCADE geometric tools provide algorithms to calculate the intersectio"

Transcription

1 Two analytical d line intersection in OpenCASCADE eryar@63.com Abstract. OpenCASCADE geometric tools provide algorithms to calculate the intersection of two d curves, surfaces, or a 3d curve and a surface. Those are the basis of the Boolean Operation, so under the implementation can help to under the BO algorithms. The paper focus on the intersection of two d analytical line. Key Words. OpenCASCADE, Line Intersection.Introduction 在几何造型系统中, 通常利用集合的并 交 差运算实现复杂形体的构造, 而集合运算需要大量的求交运算 如何提高求交的实用性 稳定性 速度和精度等, 对几何造型系统至关重要 当前的几何造型系统, 大多数采用边界表示法来表示模型 在这种表示法中, 形体的边界元素和某类几何元素相对应, 它们可以是直线 圆弧 二次曲线 Bezier 曲线和 B 样条曲线等, 也可以是平面 球面 二次曲面 Bezier 曲面和 B 样条曲面等, 求交情况十分复杂 在一个典型的几何造型系统中, 用到的几何元素通常有 5 种, 为了建立一个通用的求交函数库, 所要完成的求交函数多达 : C 在 OpenCASCADE 中也有类似的数据结构来表示几何体 本文先来学习最简单的一种求交 : 两条二维直线的相交 Figure. d line intersection.code Usage OpenCASCADE 中计算二维解析曲线的类是 IntAnad_AnaIntersection, 可用于计算如下的曲线之间的相交 : 两条二维直线 ; 两个二维圆 ; 二维直线和二维圆 ; 二维直线 圆 椭圆 抛物线 双曲线二次曲线与另外一条二维曲线 ;

2 下面使用 OpenCASCADE 来对图 所示的两条二维直线进行求交计算 代码如下 : /* Copyright(C) 07 Shing Liu(eryar@63.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions : The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // NOTE // ---- // Tool: Visual Studio 03 & OpenCASCADE7..0 // Date: :5 #include <gp_dird.hxx> #include <gp_lind.hxx> #include <gp_pntd.hxx> #include <GCEd_MakeLine.hxx> #include <IntAnad_AnaIntersection.hxx> #pragma comment(lib, "TKernel.lib") #pragma comment(lib, "TKMath.lib") #pragma comment(lib, "TKGd.lib") #pragma comment(lib, "TKG3d.lib") #pragma comment(lib, "TKGeomBase.lib") void test(void) GCEd_MakeLine alinemaker(gp_pntd(0.0, 0.0), gp_pntd(0.0, 0.0)); GCEd_MakeLine alinemaker(gp_pntd(.0, 0.0), gp_pntd(.0,.0)); gp_lind aline = alinemaker.value()->lind(); gp_lind aline = alinemaker.value()->lind(); IntAnad_AnaIntersection aintana;

3 aintana.perform(aline, aline); if (aintana.isdone()) const IntAnad_IntPoint& aintpoint = aintana.point(); std::cout << "Number of IntPoint between the curves: " << aintana.nbpoints() << std::endl; std::cout << "Intersect Point: " << aintpoint.value().x() << ", " << aintpoint.value().y() << std::endl; int main(int argc, char* argv[]) test(); return 0; 计算得到交点为 (6.44, 6.44): Number of IntPoint between the curves: Intersect Point: , Press any key to continue... 3.Code Analysis 计算二维直线相交的代码在文件 IntAnad_AnaIntersection_.cxx 中, 其中名字 IntAnad 的意思是 Intersection Analytical 两个单词前三个字母, 即二维解析曲线求交包 源码列出如下 : void IntAnad_AnaIntersection::Perform (const gp_lind& L, const gp_lind& L) done = Standard_False; Standard_Real A,B,C; Standard_Real A,B,C; L.Coefficients(A,B,C); L.Coefficients(A,B,C); Standard_Real al,be,ga; Standard_Real al,be,ga; Standard_Real Det =Max (Abs(A),Max(Abs(A),Max(Abs(B),Abs(B)))); if (Abs(A)==Det) al=a; be=b; ga=c; al=a; be=b; ga=c; else if (Abs(B)==Det)

4 al=b; be=a; ga=c; al=b; be=a; ga=c; else if (Abs(A)==Det) al=a; be=b; ga=c; al=a; be=b; ga=c; else al=b; be=a; ga=c; al=b; be=a; ga=c; Standard_Real rap=al/al; Standard_Real denom=be-rap*be; if (Abs(denom)<=RealEpsilon()) // Directions confondues para=standard_true; nbp=0; if (Abs(ga-rap*ga)<=RealEpsilon()) // Droites confondues iden=standard_true; empt=standard_false; else // Droites paralleles iden=standard_false; empt=standard_true; else para=standard_false; iden=standard_false; empt=standard_false; nbp=; Standard_Real XS = (be*ga/al-be*ga/al)/denom; Standard_Real YS = (rap*ga-ga)/denom; if (((Abs(A)!=Det)&&(Abs(B)==Det)) ((Abs(A)!=Det)&&(Abs(B)!=Det)&&(Abs(A)!=Det))) Standard_Real temp=xs; XS=YS; YS=temp;

5 Standard_Real La,Mu; if (Abs(A)>=Abs(B)) La=(YS-L.Location().Y())/A; else La=(L.Location().X()-XS)/B; if (Abs(A)>=Abs(B)) Mu=(YS-L.Location().Y())/A; else Mu=(L.Location().X()-XS)/B; lpnt[0].setvalue(xs,ys,la,mu); done=standard_true; 从上述源码中可以看出,OpenCASCADE 对二维直线求交计算使用的是解方程组的方法 步骤如下 : 计算两条直线的系数 ; 计算系数方程组 这些都是高中数学知识了, 就当复习下, 并由此看出 OpenCASCADE 中的一些编码风格 先看第一步, 根据点和方向计算二维直线的系数, 相关的源码如下所示 : inline void gp_lind::coefficients (Standard_Real& A, Standard_Real& B, Standard_Real& C) const A = pos.direction().y(); B = - pos.direction().x(); C = -(A * pos.location().x() + B * pos.location().y()); 由高中数学可知, 二维直线的方程有三种形式 : 点斜式 两点式和一般式 y y y - y y - y k( x x ) Ax By C 0 x x x x 点斜式 两点式 一般式 根据一般式方程, 当 B 不等于 0 时, 可得 : A C y x B B 因为 OpenCASCADE 中的 gp_dird 是单位向量, 所以可将其 X Y 值分别对应 -B 和 A 确定 A 和 B 后, 再根据一般式方程将 C 移项得到 :C=-Ax-By 得到直线的系数后, 交点的计算就变成如下方程组的求解了 : A x B y C 0 BC x A x B y C 0 A B BC A B, y AC A B A C A B

6 OpenCASCADE 的源码中有多个条件判断, 相当于高期消元法中的选主元操作, 主要是为了避免分母为 0 的情况 其中有两个实数直接判断相等的语句, 如 Abs(A)==Det 这种 对于实数大小的比较, 一般总是使用两者相减的值是否落在 0 的领域中来判断 OpenCASCADE 中对于实数的比较没有采用领域比较技术, 显得不够严谨 其实领域比较的方法已经在 Precison.hxx 中进行了说明, 只是有些代码没有严格执行 4.Conclusion 通过对 OpenCASCADE 中二维直线相交代码的分析, 理解其实现原理 : 将点向式的直线转换成一般式, 再对一般式联立方程求解 求解过程中使用了高期消元法的选主元方法 对于实数的比较应该尽量采用领域比较技术, 而避免直接使用两个数相等 == 或不相等!= 的判断 如果只是判断两条直线是否相交, 而不用计算交点的话, 算法导论 中有使用向量来高效算法 因为二维直线相交只涉及到高中数学知识, 所以本文是抛砖引玉, 通过继续学习, 理解 B 样条曲线的相交算法实现 5.References. 孙家广, 胡事民. 计算机图形学基础. 清华大学出版社 人民教育出版社中学数学室. 数学第二册上. 人民教育出版社 钱能. C++ 程序设计教程. 清华大学出版社 易大义, 沈云宝, 李有法. 计算方法. 浙江大学出版社 潘金贵等译. 算法导论. 机械工业出版社. 0

自然辩证法索引

自然辩证法索引 自 然 与 科 学 技 术 哲 学 名 词 索 引 上 海 交 通 大 学 可 信 任 数 字 技 术 实 验 室 制 Copyright 2009 Trust Digital Technology Laboratory, Shanghai Jiao Tong University. Permission is hereby granted, free of charge, to any person

More information

2

2 2 3 1 2 3 9 bk 8 7 4 5 6 bn bm bl 1 2 3 4 5 6 7 8 9 p bk bl bm bn bo bo bp bq bq bp 1 2 8 . 1 2 3 4 5 6 bs 7 br 8 bq 9 bp bk bo bn bm bl 1 2 3 4 5 6 7 8 9 cm cl ck bt bk bl bm bn bo bp bq br bs bt

More information

* * 2

* * 2 * * 2 3 4 6 p 1234567 bl bm bn bo bp bq bk 9 8 cl ck bt bs br 1 0 2 3 4 5 6 7 8 9 bk bl bm bn bo bp bq br bs p bt ck 8 2 4 6 cl cm cn co co cn cm 10 . co cn cm cl ck bt bs 1 2 34567 8 9 bk bl bm bn

More information

Panaboard Overlayer help

Panaboard Overlayer help Panaboard Overlayer Image Capture Software for Electronic Whiteboard (Panaboard) ... 3... 5... 6... 13...14 Panaboard Overlayer 1. 2. 3. 4. 4-1. 4-2. [ / ] ( ) 4-3. 5. 6. 6-1. 6-2. [ / ] ( ) 7. Panaboard

More information

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation Applied Biosystems StepOne Real-Time PCR System StepOne 系统安装 快速参考卡 本文档提供在并置布局中安装 StepOne 系统的简明指导 有关 完整步骤或独立安装步骤 请参阅 Applied Biosystems StepOne Real-Time PCR System 安装 联网和维护指南 目录 1. 安装准备........................................

More information

绘制OpenCascade中的曲线

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

More information

Microsoft Word - Atmel-45136A-Pick-Best-Microcontroller-Strom-Eiland-Flodell_Article_CS

Microsoft Word - Atmel-45136A-Pick-Best-Microcontroller-Strom-Eiland-Flodell_Article_CS 如 何 为 您 的 下 一 款 设 计 选 出 最 好 的 8 位 或 32 位 微 控 制 器 作 者 : Atmel 产 品 营 销 高 级 总 监 Oyvind Strom Atmel 产 品 营 销 总 监 Andreas Eieland Atmel 研 发 工 具 部 门 高 级 产 品 营 销 经 理 Henrik Flodell 不 久 之 前, 嵌 入 式 系 统 还 是 既 昂 贵

More information

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 B. 啟 用 智 慧 型 裝 置 的 無 線 Wi-Fi C. 選 擇 無 線 網 路 名 稱 "edimax.setup"

More information

L360/L363

L360/L363 NPD5195-00 TC Seiko Epson Corporation Epson Epson 2014 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation PRINT Image Matching PRINT

More information

Epson Perfection V39

Epson Perfection V39 NPD5155-01 TC Seiko Epson Corporation Epson Epson 2014 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation Microsoft, Windows, and Windows

More information

XP-225 Series

XP-225 Series NPD5089-01 TC Seiko Epson Corporation Epson Epson 2014 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation PRINT Image Matching PRINT

More information

SA2RGA Chinese user manual

SA2RGA Chinese user manual www.philips.com/welcome SA2RGA02 SA2RGA04 SA2RGA08 ZH-HK sa2rga_um_02_20zht.indd 1 2/24/10 12:06:56 PM 1 2 2 4 2 RAGA 6 6 3 7 7 7 7 8 RAGA 9 RAGA 9 9 18 FM ( ) 18 18 18 18 19 RAGA 19 10 20 11 22 22 12

More information

CA Agile Vision Agile Vision 集成指南

CA Agile Vision Agile Vision 集成指南 CA Agile Vision Agile Vision 集 成 指 南 Winter 2011 第 二 版 本 文 档 包 括 内 嵌 帮 助 系 统 和 以 电 子 形 式 分 发 的 材 料 ( 以 下 简 称 文 档 ), 其 仅 供 参 考,CA 随 时 可 对 其 进 行 更 改 或 撤 销 未 经 CA 事 先 书 面 同 意, 不 得 擅 自 复 制 转 让 翻 印 透 露 修 改

More information

Microsoft Word - Xinhua Far East_Methodology_gb_2003.doc

Microsoft Word - Xinhua Far East_Methodology_gb_2003.doc 新 华 远 东 中 国 资 信 评 级 新 华 财 经 有 限 公 司 上 海 远 东 资 信 评 估 有 限 公 司 新 华 远 东 中 国 资 信 评 级 2003 年 电 子 邮 箱 评 级 总 监 联 系 电 话 rating@xfn.com 钟 汶 权 CFA 852-3102 3612 8621-5306-1122 目 的 新 华 财 经 有 限 公 司 与 上 海 远 东 资 信 评

More information

2

2 2 3 . 4 5 6 1 2 3 bk bl bm 9 8 7 6 4 5 bn bo bp 1 2 3 p 4 5 6 7 8 9 bk bl 0 bm bn bo bp 7 . *. *. 8 .. 1. 9 . 1. 2.. 1. 2. 10 1. 11 . 3 1 2 u 12 . 13 . 1 2 USB 1 2 u p 14 . 15 16 . p p 0 p. p 17 1. 2.

More information

关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 1 水 质 : 瓶 装 的, 不 一 定 就 是 更 好 的 2 生 产 : 监 管 缺 位, 消 费 者 暴 露 于 风 险 之 中 人 们 往 往 假 定 瓶 装 水 是

关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 1 水 质 : 瓶 装 的, 不 一 定 就 是 更 好 的 2 生 产 : 监 管 缺 位, 消 费 者 暴 露 于 风 险 之 中 人 们 往 往 假 定 瓶 装 水 是 关 于 瓶 装 水, 你 不 得 不 知 的 件 事 情 关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 关 于 瓶 装 水, 你 不 得 不 知 的 8 件 事 情 1 水 质 : 瓶 装 的, 不 一 定 就 是 更 好 的 2 生 产 : 监 管 缺 位, 消 费 者 暴 露 于 风 险 之 中 人 们 往 往 假 定 瓶 装 水 是 干 净 安 全 健 康 的, 广 告 传 递

More information

:5-6

:5-6 License Agreement for Bible Texts These Scriptures: May not be altered or modified in any form. They must remain in their original context. May not be sold or offered for sale in any form. May not be used

More information

2

2 2 3 4 5 6 7 8 bq bs bt br cmcnco cp cq cl ck 6 7 8 9 2 1 3 5 4 bn bk bl bm bo bp 1 2 3 p 4 5 6 7 8 9 bk bl 0 bm bn bo bp bq br bs bt ck cl cm 0 cn co cp p cq . cm cl ck bt bs br 1 2 3 4 5 6 7 8 9 bk bl

More information

发行说明, 7.0.1 版

发行说明, 7.0.1 版 发 行 说 明 Websense Web Security Websense Web Filter 7.0.1 版 本 版 本 的 新 特 点 Websense Web Security 和 Websense Web Filter 的 7.0.1 版 本 均 已 本 地 化 为 以 下 语 言 : 法 语 德 语 意 大 利 语 日 语 葡 萄 牙 语 简 体 中 文 西 班 牙 语 繁 体 中 文

More information

EPSON Easy Interactive Tools Ver.4.2 Operation Guide

EPSON Easy Interactive Tools Ver.4.2 Operation Guide Esy Interctive Tools Ver.4.2 Esy Interctive Tools Ver.4.2 Esy Interctive Tools Esy Interctive Tools () s 11 s 10 () s () 10 s 16 s 18 s 26 PowerPoint s 27 Esy Interctive Tools EsyMP Multi PC Projection

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

Applied Biosystems StepOne™ Real-Time PCR System User Bulletin: StepOne™ System Updates (PN A / SN 117UB20-01)

Applied Biosystems StepOne™ Real-Time PCR System User Bulletin: StepOne™ System Updates (PN A / SN 117UB20-01) Applied Biosystems StepOne Real-Time PCR System ЪßÕ ³Ê Applied Biosystems StepOne Real-Time PCR System StepOne 2007 3............................................................... 2...............................................................

More information

流離所愛(完結篇)

流離所愛(完結篇) 作 者 Catabell 筆 名 琉 璃, 有 著 ㆒ 切 兒 矛 盾 的 特 質 : 任 性 好 奇 懶 惰 聰 穎 驕 恣 ; 感 情 細 膩 甚 略 嫌 豐 富 倔 強 但 易 受 傷 害 喜 歡 孤 獨 卻 害 怕 寂 寞 我 行 我 素 但 依 賴 溫 柔 卻 又 剛 強 於 香 港 文 大 學 主 修 英 文,2000 畢 業, 現 職 編 輯, 但 決 以 談 戀 愛 為 終 身 職

More information

Microsoft Word - A_Daily20160229

Microsoft Word - A_Daily20160229 高 曉 慶, Stanley Kao 陳 漢 輝, Freddy Chan 申 萬 宏 源 研 究 ( 香 港 ) 有 限 公 司 申 萬 宏 源 A 股 每 日 資 訊 - Shenwan Hongyuan A-Share Daily Notes stanley.kao@swhyhk.com freddy.hf.chan@swhyhk.com 2016 年 2 月 29 日 星 期 一 (852)

More information

Microsoft Word - A_Daily20160329

Microsoft Word - A_Daily20160329 高 曉 慶, Stanley Kao 陳 漢 輝, Freddy Chan 申 萬 宏 源 研 究 ( 香 港 ) 有 限 公 司 申 萬 宏 源 A 股 每 日 資 訊 - Shenwan Hongyuan A-Share Daily Notes stanley.kao@swhyhk.com freddy.hf.chan@swhyhk.com 2016 年 3 月 29 日 星 期 二 (852)

More information

2009年挑战乔戈里

2009年挑战乔戈里 2009 年 挑 战 乔 戈 里 活 动 概 况 : 乔 戈 里 峰 海 拔 8611 米, 它 是 喀 喇 昆 仑 山 脉 的 主 峰, 是 世 界 上 第 二 高 峰, 国 外 又 称 K2 峰 乔 戈 里 峰, 国 际 登 山 界 公 认 的 攀 登 难 度 较 大 的 山 峰 之 一 乔 戈 里 峰 峰 巅 呈 金 字 塔 形, 冰 崖 壁 立, 山 势 险 峻, 在 陡 峭 的 坡 壁 上

More information

Microsoft Word - A_Daily20151103

Microsoft Word - A_Daily20151103 陳 鳳 珠, Ellie Chan 高 曉 慶, Stanley Kao 申 萬 宏 源 研 究 ( 香 港 ) 有 限 公 司 申 萬 宏 源 A 股 日 評 - Shenwan Hongyuan A-Share Daily Notes ellie.chan@swhyhk.com stanley.kao@swhyhk.com 2015 年 11 月 3 日 星 期 二 (852) 2509-8431

More information

XP Series

XP Series : 1. 2. 3. : NPD5447-00 TC Seiko Epson Corporation Epson Epson 2016 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation PRINT Image

More information

(Microsoft PowerPoint - 2015A UPEC IR ppt \(cn\) \(NDR\)4.8 [\317\340\310\335\304\243\312\275])

(Microsoft PowerPoint - 2015A UPEC IR ppt \(cn\) \(NDR\)4.8 [\317\340\310\335\304\243\312\275]) 股 票 代 號 :1216 TT 2015 全 年 度 業 績 發 佈 (2016.4.11 更 新 ) Disclaimers The information contained in this presentation is intended solely for your personal reference. Such information is subject to change without

More information

T stg -40 to 125 C V cc 3.8V V dc RH 0 to 100 %RH T a -40 to +125 C -0.3 to 3.6V V -0.3 to VDD+0.3 V -10 to +10 ma = 25 = 3V) VDD

T stg -40 to 125 C V cc 3.8V V dc RH 0 to 100 %RH T a -40 to +125 C -0.3 to 3.6V V -0.3 to VDD+0.3 V -10 to +10 ma = 25 = 3V) VDD 1/16 T stg -40 to 125 C V cc 3.8V V dc RH 0 to 100 %RH T a -40 to +125 C -0.3 to 3.6V V -0.3 to VDD+0.3 V -10 to +10 ma (@T = 25 C, @Vdd = 3V) VDD 1.8 3.0 3.6 V (1) 0.08 0.3 µa Idd 300 450 500 µa 0.25

More information

XP Series

XP Series NPD5087-01 TC Seiko Epson Corporation Epson Epson 2014 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation PRINT Image Matching PRINT

More information

EMC® VNX® Series VNX8000™ Block 安装指南

EMC® VNX® Series VNX8000™ Block 安装指南 EMC VNX Series VNX8000 Block 安 装 指 南 300-999-791 REV 05 版 权 所 有 2014-2015 EMC Corporation 保 留 所 有 权 利 中 国 印 刷 发 布 日 期 : 2015 年 2 月 EMC 确 信 本 出 版 物 在 发 布 之 日 内 容 准 确 无 误 本 出 版 物 中 的 信 息 可 随 时 更 改 而 不 另

More information

Topology and Geometry in OpenCascade

Topology and Geometry in OpenCascade Topology and Geometry in OpenCascade Location and Orientaion eryar@163.com 摘要 Abstract: 本文简要介绍了几何造型中的边界表示法 (BRep), 并结合程序说明 OpenCascade 中的边界表示的具体实现, 即拓朴与几何的联系 拓朴结构中的位置 (Location) 和朝向 (Orientation) 进行了详细说明

More information

經濟部智慧財產局

經濟部智慧財產局 經 濟 部 智 慧 財 產 局 我 國 著 作 權 合 理 使 用 實 務 見 解 之 研 究 期 末 報 告 書 執 行 單 位 益 思 科 技 法 律 事 務 所 中 華 民 國 一 一 年 十 二 月 八 日 I 我 國 著 作 權 合 理 使 用 實 務 見 解 之 研 究 期 末 報 告 書 計 畫 主 持 人 賴 文 智 : 益 思 科 技 法 律 事 務 所 所 長 臺 灣 大 學 法

More information

封面及首頁.doc

封面及首頁.doc Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

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

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

More information

Abstract: The paper researches the situation of contradiction between traffic de- mand and supply of Shangyu city,in order to provide practical measures to relief the city's increasingly serious contradictions

More information

ebook70-14

ebook70-14 Linux 1 4 1 5 1 6 1 7 1 8 1 9 S t a r O ff i c e 2 0 L i n u x 1 4 O p e n L i n u x O p e n L i n u x C D - R O M O p e n L i n u x C o r e l WordPerfect 8 for Linux S t a r D i v i s i o n S t a r O

More information

封面.PDF

封面.PDF Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

Xear 3D USB CH-IN-2 SPKs 2 6 :

Xear 3D USB CH-IN-2 SPKs 2 6 : 13 6 CH-IN-2 SPKs 2 6 : 13 2003 7 0 13 Notice The content furnished in this document is C-Media audio product knowledge for customers reference However, C-Media Inc assumes no responsibility for the consequences

More information

2

2 2 1. A 3. A 2. B A. 1. 1 2. 1 3 4 5 6 7 8 9 p 10 1234 5 6 bl bm bk9 8 7 bn bo bp bq br co cn cm cl ck bs bt 1 2 3 4 5 6 7 8 9 bk bl bm bn W bo 0 bp bq br bs bt ck cl p cm cn 8 2 4 6 co 11 cs cr cq cp cp

More information

NOISE CANCELLING HEADPHONES 700

NOISE CANCELLING HEADPHONES 700 NOISE CANCELLING HEADPHONES 700 1. 2. 3. 4. 5. 6. 7. / 8. / Bose 2 3 UL CSA VDE CCC 3 FCC 15 B / Bose Corporation FCC 15 RSS (1) (2) FCC CAN ICES-3 (B)/NMB-3(B) Bose Corporation 2014/53/EU www.bose.com/compliance

More information

* * 2

* * 2 * * 2 1. A 3. A 2. B A. 1. 1 2. 1 3 4 5 6 7 8 9 p 10 1234 5 bl bm bn bo bp bk 98 7 6 cm cl ck bt bs bq br 1 2 3 4 5 6 7 8 9 bk bl W bm 0 bn bo bp bq br bs bt p ck cl 8 2 4 6 cm 11 cq cp co cn cn co cp

More information

L365

L365 NPD5194-02 TC Seiko Epson Corporation Epson Epson 2014 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation PRINT Image Matching PRINT

More information

一 財 團 法 人 世 聯 倉 運 文 教 基 金 會 2016 CTW 物 流 論 文 獎 徵 選 辦 法 一 申 請 資 格 凡 全 國 各 界 之 物 流 人 才 於 當 年 度 或 前 一 年 度 所 完 成 且 未 經 公 開 出 版 ( 研 討 會 發 表 碩 博 士 論 文 視 作 未 經 公 開 出 版 ) 之 中 文 研 究 論 文 皆 可 報 名 參 加 ; 惟 同 篇 論 文 應

More information

Microsoft PowerPoint - IAS 21 - IFRS宣導會.pptx

Microsoft PowerPoint - IAS 21 - IFRS宣導會.pptx IAS 21 Nov 19, 2010 Agenda Page 1 1 2 4 3 11 4 17 5 IFRS 23 Section 1 Section 1 WHY IAS 21? IAS 21 2 Section 1 Determination Functional Currency Presentation Currency First Time Adoption IFRS IAS 21 2

More information

C/C++ - 文件IO

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

More information

% 6.% 9.6% % 7.% 1.8% % 68.7% 14.5% : 15.8% 57.9% 4.7%

% 6.% 9.6% % 7.% 1.8% % 68.7% 14.5% : 15.8% 57.9% 4.7% 21 6 21 6... 3... 3... 5... 5 1... 5 2... 5 3... 5 4... 6... 7... 7... 9 24.5% 6.% 9.6%... 9 17.% 7.% 1.8%... 11 39.2% 68.7% 14.5%... 14 : 15.8% 57.9% 4.7%... 17 : 39.9% 8.3% 13.5%... 19... 2... 22...

More information

L210/L350

L210/L350 NPD4686-00 TC No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without

More information

chap-1_NEW.PDF

chap-1_NEW.PDF Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

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

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

More information

概 述 3 重 要 事 项 5 参 与 免 税 5 统 一 税 务 待 遇 ( 财 政 统 一 ) 7 反 税 基 侵 蚀 ( 利 息 扣 除 ) 8 过 度 参 与 债 务 利 息 扣 除 的 限 制.. 8 过 度 负 债 收 购 利 息 扣 除 的 限 制.. 9 不 公 平 贷 款 10 加

概 述 3 重 要 事 项 5 参 与 免 税 5 统 一 税 务 待 遇 ( 财 政 统 一 ) 7 反 税 基 侵 蚀 ( 利 息 扣 除 ) 8 过 度 参 与 债 务 利 息 扣 除 的 限 制.. 8 过 度 负 债 收 购 利 息 扣 除 的 限 制.. 9 不 公 平 贷 款 10 加 荷 兰 税 务 制 度 概 要 2014 与 外 国 投 资 者 有 关 的 政 策 免 责 声 明 : 本 文 件 仅 包 含 一 般 信 息, 这 些 一 般 信 息 不 是 ( 财 政 ) 法 律 意 见 或 其 他 专 业 意 见 ( 包 括 对 荷 兰 法 ) 或 综 合 研 究 的 问 题 虽 然 我 们 为 这 些 一 般 信 息 付 出 巨 大 关 注 和 劳 动, 对 于 可 能

More information

WFC40810

WFC40810 9000086873 (PD 85 05 10) Operating and Installation Instructions Please read this specification carefully before you use the product. Any failure and losses caused by ignoring the above mentioned items

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

Microsoft Word - SH090330.doc

Microsoft Word - SH090330.doc 2009 年 3 月 30 日 環 球 指 數 上 周 收 市 價 一 星 期 變 化 百 分 率 四 星 期 變 化 百 分 率 恆 生 指 數 14,119.50 +1285.99 +10.02% +1307.93 +10.21% 國 企 指 數 8,481.22 +985.26 +13.14% +1578.38 +22.87% 上 海 綜 合 指 數 2,374.44 +93.35 +4.09%

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

2014 年 前 言 房 地 产 投 资 信 托 基 金 (Real Estate Investment Trusts,REITs) 在 海 外 早 已 发 展 成 熟, 而 香 港 政 府 去 年 也 进 一 步 准 备 放 宽 房 托 限 制, 相 比 之 下, 中 国 已 经 改 革 开 放

2014 年 前 言 房 地 产 投 资 信 托 基 金 (Real Estate Investment Trusts,REITs) 在 海 外 早 已 发 展 成 熟, 而 香 港 政 府 去 年 也 进 一 步 准 备 放 宽 房 托 限 制, 相 比 之 下, 中 国 已 经 改 革 开 放 研 究 报 告 REITs 中 国 路 2014 年 2014 年 前 言 房 地 产 投 资 信 托 基 金 (Real Estate Investment Trusts,REITs) 在 海 外 早 已 发 展 成 熟, 而 香 港 政 府 去 年 也 进 一 步 准 备 放 宽 房 托 限 制, 相 比 之 下, 中 国 已 经 改 革 开 放 三 十 年, 对 房 托 发 展 至 今 还 未

More information

目 录 I. 出 口 单 证 业 务... 3 1. 正 本 提 单 签 发... 3 2. 提 单 更 改 ( 提 单 已 经 签 发 )... 3 3.Seaway bill 提 单 签 发... 4 4. 电 放... 4 5. 第 三 地 / 目 的 港 签 单... 4 6. 船 证 明.

目 录 I. 出 口 单 证 业 务... 3 1. 正 本 提 单 签 发... 3 2. 提 单 更 改 ( 提 单 已 经 签 发 )... 3 3.Seaway bill 提 单 签 发... 4 4. 电 放... 4 5. 第 三 地 / 目 的 港 签 单... 4 6. 船 证 明. Counter Business Quick Reference (Xiamen) ( 厦 门 前 台 业 务 快 速 指 南 ) Last Updated on Nov. 1st, 2015 目 录 I. 出 口 单 证 业 务... 3 1. 正 本 提 单 签 发... 3 2. 提 单 更 改 ( 提 单 已 经 签 发 )... 3 3.Seaway bill 提 单 签 发... 4 4.

More information

這 是 醫 生 在 小 兒 的 初 步 診 斷 的 判 語 這 樣 的 一 段 話, 令 我 望 子 成 龍 的 美 夢 碎 了 醣 豆 豆 大 夢 想 十 一 年 前 的 資 訊 沒 有 今 天 的 發 達, 互 聯 網 還 是 一 個 很 奢 侈 的 東 西, 加 上 黏 多 醣 症 這 個 罕

這 是 醫 生 在 小 兒 的 初 步 診 斷 的 判 語 這 樣 的 一 段 話, 令 我 望 子 成 龍 的 美 夢 碎 了 醣 豆 豆 大 夢 想 十 一 年 前 的 資 訊 沒 有 今 天 的 發 達, 互 聯 網 還 是 一 個 很 奢 侈 的 東 西, 加 上 黏 多 醣 症 這 個 罕 這 是 醫 生 在 小 兒 的 初 步 診 斷 的 判 語 這 樣 的 一 段 話, 令 我 望 子 成 龍 的 美 夢 碎 了 醣 豆 豆 大 夢 想 十 一 年 前 的 資 訊 沒 有 今 天 的 發 達, 互 聯 網 還 是 一 個 很 奢 侈 的 東 西, 加 上 黏 多 醣 症 這 個 罕 有 的 遺 傳 病, 醫 生 對 於 它 的 認 識 也 不 太 深, 何 況 我 這 個 平 凡

More information

WVT new

WVT new Operating and Installation Instructions 5120 004601 (PD 84 09 25) Please read this specification carefully before you use the product. Any failure and losses caused by ignoring the above mentioned items

More information

致 谢 本 人 自 2008 年 6 月 从 上 海 外 国 语 大 学 毕 业 之 后, 于 2010 年 3 月 再 次 进 入 上 外, 非 常 有 幸 成 为 汉 语 国 际 教 育 专 业 的 研 究 生 回 顾 三 年 以 来 的 学 习 和 生 活, 顿 时 感 觉 这 段 时 间 也

致 谢 本 人 自 2008 年 6 月 从 上 海 外 国 语 大 学 毕 业 之 后, 于 2010 年 3 月 再 次 进 入 上 外, 非 常 有 幸 成 为 汉 语 国 际 教 育 专 业 的 研 究 生 回 顾 三 年 以 来 的 学 习 和 生 活, 顿 时 感 觉 这 段 时 间 也 精 英 汉 语 和 新 实 用 汉 语 课 本 的 对 比 研 究 The Comparative Study of Jing Ying Chinese and The New Practical Chinese Textbook 专 业 : 届 别 : 姓 名 : 导 师 : 汉 语 国 际 教 育 2013 届 王 泉 玲 杨 金 华 1 致 谢 本 人 自 2008 年 6 月 从 上 海 外

More information

Topology and Geometry in OpenCascade

Topology and Geometry in OpenCascade Topology and Geometry in OpenCascade-Vertex eryar@163.com 摘要 Abstract: 本文简要介绍了几何造型中的边界表示法 ( BRep), 并结合程序说明 OpenCascade 中的边界表示的具体实现, 即拓朴与几何的联系 对具有几何信息的拓朴结构顶点 (vertex) 边(edge) 面(face) 进行了详细说明 本文只对顶点数据进行说明

More information

WF-2630 Series

WF-2630 Series NPD5057-03 TC Seiko Epson Corporation Epson Epson 2014 Seiko Epson Corporation.All rights reserved. 2 EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Epson Corporation EPSON Scan software is based

More information

精 神 與 自 然 : 楊 慈 湖 心 學 研 究 趙 燦 鵬 哲 學 博 士 嶺 南 大 學 二 零 零 五 年

精 神 與 自 然 : 楊 慈 湖 心 學 研 究 趙 燦 鵬 哲 學 博 士 嶺 南 大 學 二 零 零 五 年 Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

摘 要 摘 要 隨 著 自 由 行 的 實 施, 越 來 越 多 的 內 地 旅 客 進 入 澳 門, 有 效 地 帶 動 了 澳 門 旅 遊 博 彩 酒 店 和 零 售 等 行 業 的 發 展 然 而, 伴 隨 旅 客 數 量 的 增 加, 旅 遊 糾 紛 也 層 出 不 窮, 這 無 疑 為 以

摘 要 摘 要 隨 著 自 由 行 的 實 施, 越 來 越 多 的 內 地 旅 客 進 入 澳 門, 有 效 地 帶 動 了 澳 門 旅 遊 博 彩 酒 店 和 零 售 等 行 業 的 發 展 然 而, 伴 隨 旅 客 數 量 的 增 加, 旅 遊 糾 紛 也 層 出 不 窮, 這 無 疑 為 以 題 目 : 隨 團 訪 澳 內 地 旅 客 與 澳 門 旅 遊 業 者 對 旅 遊 相 關 法 律 的 認 知 ---- 從 旅 遊 糾 紛 的 角 度 出 發 Title:Study on Cognition of Laws on Tourism Dispute between Package-tour Visitors from Mainland China and Local Tourist

More information

% %

% % 2014 20 2 POPULATION & DEVELOPMENT Vol. 20 No. 2 2014 430073 2010 C913 A 1674-1668 2014 02-0033 - 11 The Analysis of the Social Security of Migrant Workers and Their Integration into Urban Society SHI

More information

Layout 1

Layout 1 Celebrating The First Decade 风 雨 十 年 铸 就 辉 煌 Brooklands new Media Premier Corporate Publishers 布 鲁 克 蓝 新 媒 体 公 司 出 版 并 与 新 华 通 讯 社 协 诚 合 作 A Brooklands New Media Publication In Association With Xinhua

More information

,,,,, (),,, : 1724 H 2 :,,,,,,;,,? 3,26,,, :,(), :,,,,, ,,,, 2004,29,, 5 :?,,?,, (),,, ;, 6,,,,, (),,?, 2 :,http :/ / www. cmn. com. cn.

,,,,, (),,, : 1724 H 2 :,,,,,,;,,? 3,26,,, :,(), :,,,,, ,,,, 2004,29,, 5 :?,,?,, (),,, ;, 6,,,,, (),,?, 2 :,http :/ / www. cmn. com. cn. Ξ :,,,, :,,,,,,,, (),,4 10 1, 20 1 1,,, 1811 5 11 (), (Conjoined Twins),21, 63 Ξ,;, 1 :,http :/ / www. edu. cn,2002 9 2 27 2005 5 2,,,,, (),,, : 1724 H 2 :,,,,,,;,,? 3,26,,, :,(), :,,,,, 4 2000,,,, 2004,29,,

More information

% 29.9%.7% % 2% 2.1% % 45.2% 4.9% % 42.5% 14.8% % 41.5% 23.4%... 2

% 29.9%.7% % 2% 2.1% % 45.2% 4.9% % 42.5% 14.8% % 41.5% 23.4%... 2 211 2 211 2... 3... 3... 5... 5... 6... 9... 1 64.2% 29.9%.7%... 1 64.9% 2% 2.1%... 13 72.8% 45.2% 4.9%... 15 84.2% 42.5% 14.8%... 18 15.8% 41.5% 23.4%... 21... 23... 24... 24... 26... 28... 3... 32...

More information

untitled

untitled A, 3+A printf( ABCDEF ) 3+ printf( ABCDEF ) 2.1 C++ main main main) * ( ) ( ) [ ].* ->* ()[] [][] ** *& char (f)(int); ( ) (f) (f) f (int) f int char f char f(int) (f) char (*f)(int); (*f) (int) (

More information

专 业 为 本 客 户 为 先 北 京 康 信 知 识 产 权 代 理 有 限 责 任 公 司 是 一 家 经 相 关 主 管 部 门 批 准, 具 有 国 内 外 专 利 商 标 代 理 资 格, 能 够 提 供 全 方 位 知 识 产 权 代 理 服 务 的 法 律 服 务 机 构 公 司 成

专 业 为 本 客 户 为 先 北 京 康 信 知 识 产 权 代 理 有 限 责 任 公 司 是 一 家 经 相 关 主 管 部 门 批 准, 具 有 国 内 外 专 利 商 标 代 理 资 格, 能 够 提 供 全 方 位 知 识 产 权 代 理 服 务 的 法 律 服 务 机 构 公 司 成 康 信 知 识 产 权 杂 志 中 文 版 2012 年 第 1 期 总 第 65 期 我 国 商 标 申 请 审 查 周 期 缩 至 10 个 月 凝 智 聚 力 顺 势 作 为 康 信 2012 年 会 圆 满 结 束 中 美 两 国 外 观 设 计 专 利 制 度 比 较 欧 洲 专 利 局 上 调 专 利 申 请 相 关 费 用 专 利 布 局 海 外 如 何 做 到 " 事 半 功 倍 "

More information

Adobe® InDesign® CS5 篩選器讀我檔案

Adobe® InDesign® CS5 篩選器讀我檔案 ADOBE INDESIGN CS5 2010/5/21 2010 Adobe Systems Incorporated and its licensors. All rights reserved. Adobe InDesign CS5 - Windows Mac OS This user guide is protected under copyright law, furnished for

More information

The presentation is prepared by BH Global Corporation Limited. (the Company ) and is intended solely for your personal reference and is strictly confi

The presentation is prepared by BH Global Corporation Limited. (the Company ) and is intended solely for your personal reference and is strictly confi 2016 2017 3 14 The presentation is prepared by BH Global Corporation Limited. (the Company ) and is intended solely for your personal reference and is strictly confidential. The information contained in

More information

C++ 程式設計

C++ 程式設計 C C 料, 數, - 列 串 理 列 main 數串列 什 pointer) 數, 數, 數 數 省 不 不, 數 (1) 數, 不 數 * 料 * 數 int *int_ptr; char *ch_ptr; float *float_ptr; double *double_ptr; 數 (2) int i=3; int *ptr; ptr=&i; 1000 1012 ptr 數, 數 1004

More information

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

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

More information

論法院作成出版品禁止發行之衡量標準

論法院作成出版品禁止發行之衡量標準 論 法 院 作 成 出 版 品 禁 止 發 行 裁 定 之 衡 量 標 準 - 以 日 本 實 務 及 學 說 討 論 為 中 心 - A Study on the Stardard of Issuing a Preliminary Injunction -Comparative with the Japanese Practice and Theory- 詹 融 潔 Jung-Chieh Chan

More information

4.C ( 详细解析见视频课程 绝对值 01 约 21 分 15 秒处 ) 5.E ( 详细解析见视频课程 绝对值 01 约 32 分 05 秒处 ) 6.D ( 详细解析见视频课程 绝对值 02 约 4 分 28 秒处 ) 7.C ( 详细解析见视频课程 绝对值 02 约 14 分 05 秒处 )

4.C ( 详细解析见视频课程 绝对值 01 约 21 分 15 秒处 ) 5.E ( 详细解析见视频课程 绝对值 01 约 32 分 05 秒处 ) 6.D ( 详细解析见视频课程 绝对值 02 约 4 分 28 秒处 ) 7.C ( 详细解析见视频课程 绝对值 02 约 14 分 05 秒处 ) [ 说明 ] 1. 以下所指教材是指朱杰老师的 管理类联考综合能力数学套路化攻略 2. 该文档中所标答案和参见的教材答案, 与视频有冲突的, 以视频答案为准! 基础篇 第 1 章 数 1.2.1 整数例题答案 : 1. A ( 详细解析见教材 P7 例 2) 2. D ( 详细解析见视频课程 数的性质 约 10 分 53 秒处 ) 3. C ( 详细解析见教材 P7 例 3) 4.E ( 详细解析见视频课程

More information

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

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

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

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

1

1 1 2 3 4 5 GNUDebugger 6 7 void main(int argc, char **argv){ vulncpy(argv[1]); return; } void vulncpy(char *a){ char buf[30]; strcpy(buf, a); return; } *argv[1] buf Shellcode *argv[1]... &buf &buf 8 strcpy

More information

逢甲大學實習工場

逢甲大學實習工場 國 立 臺 灣 藝 術 大 學 實 習 場 所 安 全 衛 生 工 作 守 則 中 華 民 國 九 十 七 年 一 月 十 五 日 訂 定 實 習 工 場 安 全 衛 生 工 作 守 則 第 一 章 總 則 一 為 防 止 職 業 災 害, 保 障 工 作 安 全 與 健 康, 確 保 工 場 之 正 常 運 作, 特 依 勞 工 安 全 衛 生 法 之 規 定 訂 定 本 守 則 二 本 守 則

More information

untitled

untitled and Due Diligence M&A in China Prelude and Due Diligence A Case For Proper A Gentleman s Agreement? 1 Respect for the Rule of Law in China mandatory under law? CRITICAL DOCUMENTS is driven by deal structure:

More information

FZUBRIDGE

FZUBRIDGE 1 2 3 5 8 9 10 11 12 13 14 15 16 17 19 20 21 23 24 25 29 31 32 33 34 M g1 M 1g ( M 2g M 1g )(1 e ( t, ) ) 35 36 M Q M Q g g 1.15M 1.05Q p p 37 max 1 n e max n i1 1 2 i 38 39 n max M Q M Q g g

More information

¬¬

¬¬ 2 年 第 9 周 2.2.2-2.2.27 26 年 第 7 周 : 受 春 节 影 响, 一 二 级 市 场 无 供 应 成 交 26 年 第 7 周 (26 年 2 月 8 日 26 年 2 月 4 日 ) 哈 尔 滨 市 无 土 地 供 应 26 年 第 7 周 (26 年 2 月 8 日 26 年 2 月 4 日 ) 哈 尔 滨 市 无 土 地 成 交 26 年 第 7 周 (26 年 2

More information

FY.DOC

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

More information

输电线路智能监测系统通信技术应用研究

输电线路智能监测系统通信技术应用研究 Smart Grid 智 能 电 网, 2014, 4, 11-15 http://dx.doi.org/10.12677/sg.2014.41003 Published Online February 2014 (http://www.hanspub.org/journal/sg.html) Application Research of Communication Technology for

More information

C 1

C 1 C homepage: xpzhangme 2018 5 30 C 1 C min(x, y) double C // min c # include # include double min ( double x, double y); int main ( int argc, char * argv []) { double x, y; if( argc!=

More information

國立臺灣藝術大學

國立臺灣藝術大學 國 立 臺 灣 藝 術 大 學 藝 術 與 人 文 教 學 研 究 所 碩 士 學 位 論 文 本 論 文 獲 國 家 教 育 研 究 院 博 ( 碩 ) 士 論 文 研 究 獎 助 課 外 讀 物 對 於 國 小 低 年 級 國 語 科 教 科 書 輔 助 性 之 研 究 - 以 新 北 市 100 年 度 國 民 小 學 推 動 閱 讀 計 畫 優 良 圖 書 為 例 指 導 教 授 : 張 純

More information

1 目 的 为 维 护 国 内 政 企 市 场 良 好 的 市 场 秩 序, 加 强 对 窜 货 等 重 大 违 规 行 为 的 管 理, 特 在 2016 年 中 兴 通 讯 国 内 政 企 市 场 窜 货 管 理 办 法 基 础 上 制 定 本 管 理 办 法 本 管 理 办 法 适 用 于 中

1 目 的 为 维 护 国 内 政 企 市 场 良 好 的 市 场 秩 序, 加 强 对 窜 货 等 重 大 违 规 行 为 的 管 理, 特 在 2016 年 中 兴 通 讯 国 内 政 企 市 场 窜 货 管 理 办 法 基 础 上 制 定 本 管 理 办 法 本 管 理 办 法 适 用 于 中 中 兴 通 讯 国 内 政 企 市 场 渠 道 伙 伴 窜 货 管 理 办 法 2016 All rights reserved. No distribution without prior permission of ZTE. 1 1 目 的 为 维 护 国 内 政 企 市 场 良 好 的 市 场 秩 序, 加 强 对 窜 货 等 重 大 违 规 行 为 的 管 理, 特 在 2016 年 中 兴

More information

WF-6593

WF-6593 多 功 能 传 真 一 体 机 用 户 指 南 请 妥 善 保 管 此 说 明 书 ( 保 留 备 用 ) 安 装 使 用 产 品 前 请 阅 读 使 用 说 明 在 本 产 品 的 说 明 书 中, 打 印 部 件 将 简 称 为 打 印 机, 扫 描 部 件 将 简 称 为 扫 描 仪 本 产 品 资 料 中 使 用 的 示 意 图 仅 供 参 考, 本 产 品 实 际 可 能 与 之 存 在

More information

2007年普通高等学校招生全国统一考试

2007年普通高等学校招生全国统一考试 高 考 语 文 陕 西 卷 试 题 以 及 答 案 解 析 本 试 卷 分 第 Ⅰ 卷 ( 选 择 题 ) 和 第 Ⅱ 卷 1 至 4 页, 第 Ⅱ 卷 5 至 8 页 考 试 结 束 后, 将 本 试 卷 和 答 题 卡 一 并 交 回 第 Ⅰ 卷 注 意 事 项 : 1. 答 题 前, 考 生 在 答 题 卡 上 务 必 用 直 径 0.5 毫 米 黑 色 墨 水 签 字 笔 将 自 己 的 姓

More information

e bug 0 x=0 y=5/x 0 Return 4 2

e bug 0 x=0 y=5/x 0 Return 4 2 e 1 4 1 4 4.1 4.2 4.3 4.4 4.5 e 2 4.1 bug 0 x=0 y=5/x 0 Return 4 2 e 3 4 3 e 4 (true) (false) 4 4 e 5 4 5 4.2 1 G= V E V={n1,n2,,n m } E={e1,e2,,e p } e k ={n i,n j }, n i,n j V e 6 4.2 4 6 1 e 3 n 1 e

More information

于 水 等 : 多 源 流 理 论 视 角 下 宅 基 地 使 用 权 确 权 政 策 的 议 程 设 置 研 究 基 于 江 苏 省 4 市 的 调 查 83 push forward the confirmation of homestead use right of rural central

于 水 等 : 多 源 流 理 论 视 角 下 宅 基 地 使 用 权 确 权 政 策 的 议 程 设 置 研 究 基 于 江 苏 省 4 市 的 调 查 83 push forward the confirmation of homestead use right of rural central 第 30 卷 第 1 期 2016 年 1 月 中 国 土 地 科 学 China Land Sciences Vol.30 No.1 Jan.,2016 doi: 10.11994/zgtdkx.2016.01.010 多 源 流 理 论 视 角 下 宅 基 地 使 用 权 确 权 政 策 的 议 程 设 置 研 究 基 于 江 苏 省 4 市 的 调 查 于 水, 丁 文 ( 南 京 农 业 大

More information

untitled

untitled MPICH anzhulin@sohu.com 1 MPICH for Microsoft Windows 1.1 MPICH for Microsoft Windows Windows NT4/2000/XP Professional Server Windows 95/98 TCP/IP MPICH MS VC++ 6.x MS VC++.NET Compaq Visual Fortran 6.x

More information

2013 C 1 #include <stdio.h> 2 int main(void) 3 { 4 int cases, i; 5 long long a, b; 6 scanf("%d", &cases); 7 for (i = 0; i < cases; i++) 8 { 9 scanf("%

2013 C 1 #include <stdio.h> 2 int main(void) 3 { 4 int cases, i; 5 long long a, b; 6 scanf(%d, &cases); 7 for (i = 0; i < cases; i++) 8 { 9 scanf(% 2013 ( 28 ) ( ) 1. C pa.c, pb.c, 2. C++ pa.cpp, pb.cpp Compilation Error long long cin scanf Time Limit Exceeded 1: A 10 B 1 C 1 D 5 E 5 F 1 G II 5 H 30 1 2013 C 1 #include 2 int main(void) 3

More information

课题调查对象:

课题调查对象: 1 大 陆 地 方 政 府 大 文 化 管 理 职 能 与 机 构 整 合 模 式 比 较 研 究 武 汉 大 学 陈 世 香 [ 内 容 摘 要 ] 迄 今 为 止, 大 陆 地 方 政 府 文 化 管 理 体 制 改 革 已 经 由 试 点 改 革 进 入 到 全 面 推 行 阶 段 本 文 主 要 通 过 结 合 典 型 调 查 法 与 比 较 研 究 方 法, 对 已 经 进 行 了 政 府

More information

公平交易法損害賠償制度之功能與詮釋

公平交易法損害賠償制度之功能與詮釋 2 2001 12 1 1 2 < > 29 1 1999 3 2 < > 44 354 1991 4 5 1986 6 3 517-522 1993 < > 2000 < > 6 1 1998 4 2001 12 7 86-90 1994 < > 58 1997 4 8 < N > 60 4 105-1061985 9 6 27-34 6 100-101< > 44 19-211991 6 2001

More information

图 书 在 版 编 目 (CIP) 数 据 临 床 肿 瘤 学 : 全 2 册 /( 美 ) 尼 德 胡 贝 尔 (Niederhuber,J.E.) 等 原 著 ; 孙 燕 译. -- 北 京 : 人 民 军 医 出 版 社, ISBN Ⅰ.1 临

图 书 在 版 编 目 (CIP) 数 据 临 床 肿 瘤 学 : 全 2 册 /( 美 ) 尼 德 胡 贝 尔 (Niederhuber,J.E.) 等 原 著 ; 孙 燕 译. -- 北 京 : 人 民 军 医 出 版 社, ISBN Ⅰ.1 临 Abeloff s Clinical Oncology 临 床 肿 瘤 学 ( 第 5 版 ) 原 著 者 John E. Niederhuber James O. Armitage James H. Doroshow Michael B. Kastan Joel E. Tepper 主 译 孙 燕 ( 下 卷 ) 图 书 在 版 编 目 (CIP) 数 据 临 床 肿 瘤 学 : 全 2 册 /(

More information