2019年7月18日

COMP9021--7.15

摘要: 期中之后的知识点越来越古怪了,这节课的大意是分析一个由任意0,1组成的点阵,计算value为1的点周围上下左右都有几个点value也为1,然后根据邻居个数建立新的点阵,难点是分析情况较多,因为要分析该点是否在边界线上,故而可以在原始点阵周围加一圈0,就不用再考虑邻居点是否在边界线上了,如图所示: 从 阅读全文

posted @ 2019-07-18 15:20 Eleni 阅读(158) 评论(1) 推荐(0) 编辑

2019年7月12日

Lecture 4补充

摘要: 1. Flow accumulation: cumulative sum of water flowing across a surface. Flow accumulation model outputs are grid cell layers in which each cell has a 阅读全文

posted @ 2019-07-12 09:19 Eleni 阅读(144) 评论(0) 推荐(0) 编辑

2019年7月6日

COMP9021--7.4

摘要: 1. 不能重复的将1-9组成三组数,要求三组数均为某一个数的平方和,第一组小于第二组,第二组小于第三组,列出所有的可能且不包含重复 第一个数最大的情况是根号下997,因为后面两个数都比它大,要留出空余且不包含0 同理第二组数最大是根号下9998 第三组数为根号9876532,因为要去掉可以开根号的两 阅读全文

posted @ 2019-07-06 15:12 Eleni 阅读(208) 评论(3) 推荐(0) 编辑

Projects in Organisations

摘要: 1. Characteristics of objectives S:Specific M:Measurable A:Assignable任务分配到个人 R:Realistic T:Time related 2. Organisational strategy An expression of ho 阅读全文

posted @ 2019-07-06 13:27 Eleni 阅读(163) 评论(2) 推荐(0) 编辑

2019年7月3日

Dynamic Teams, Leadership and Culture

摘要: 1. Tuckman's Stages of team development Forming: Uncertainty about roles, looking outside for guidance Storming: GroPerformingwing confidence in team, 阅读全文

posted @ 2019-07-03 14:37 Eleni 阅读(204) 评论(0) 推荐(0) 编辑

Introduction to modern project management

摘要: 1. Characteristics of a project a) Has an established objective有既定目标 b) Has a defined life span with a beginning and an end c) Usually, involves sever 阅读全文

posted @ 2019-07-03 14:02 Eleni 阅读(345) 评论(3) 推荐(0) 编辑

2019年7月2日

COMP9021--7.1

摘要: 1. 读取相对位置的字符:file[start:end] 2. 找到最久没有被使用过的姓名:csv.reader, with open read file seperate the file by giving different part different names【 for line in 阅读全文

posted @ 2019-07-02 09:50 Eleni 阅读(179) 评论(3) 推荐(0) 编辑

2019年6月28日

COMP9021--6.27

摘要: 1. automagic IPython中提供了一些以%开头的特殊命令,我们称这些命令为Magic Command。它可以认为是IPython系统中的命令行程序,使用?可以查看其选项。if automagic is on, Magic Command也可以不带百分号直接使用,只要没有定义与其同名的变 阅读全文

posted @ 2019-06-28 10:10 Eleni 阅读(139) 评论(0) 推荐(0) 编辑

2019年6月27日

COMP9021--6.19

摘要: 1. chr is to get the character, ord can get the order(unicode)chr(11035)=chr(0x2B1B)='\u2B1B' black square; 2B1A white squareint('2B1B',16)=11035 2. s 阅读全文

posted @ 2019-06-27 12:25 Eleni 阅读(69) 评论(0) 推荐(0) 编辑

COMP9021--6.24

摘要: 1. from timeit import timeit计算程序运行时间 比如: timeit(list(range(1000))) 2. if we using jupyter it will keep ranning for many times and giving the average t 阅读全文

posted @ 2019-06-27 11:59 Eleni 阅读(111) 评论(1) 推荐(0) 编辑

导航