04 2015 档案

摘要:8.2矩阵(Matrix)对象Matrix类型继承于ndarray类型,因此含有ndarray的所有数据属性和方法。Matrix类型与ndarray类型有六个重要的不同点,当你当Matrix对象当arrays操作时,这些不同点会导致非预期的结果。1)Matrix对象可以使用一个Matlab风格的字符... 阅读全文
posted @ 2015-04-14 22:06 yyxayz 阅读(3043) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 3 using namespace std; 4 5 class animal 6 { 7 public: 8 virtual void print_age(void)=0; 9 protected:10 int age;11 };12 class ... 阅读全文
posted @ 2015-04-12 14:52 yyxayz 阅读(261) 评论(0) 推荐(0) 编辑
摘要:operator.itemgetter函数operator模块提供的itemgetter函数用于获取对象的哪些维的数据,参数为一些序号(即需要获取的数据在对象中的序号),下面看例子。a = [1,2,3]>>> b=operator.itemgetter(1) //定义函数b,获取对象的第1个域... 阅读全文
posted @ 2015-04-09 15:57 yyxayz 阅读(286) 评论(0) 推荐(0) 编辑