码迷,mamicode.com
首页 > 其他好文 > 详细

错题本

时间:2019-06-12 11:22:43      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:读取   can   fun   python3   lin   浮点   UNC   sub   attr   

报错信息:Cannot cast ufunc subtract output from dtype(‘float64‘) to dtype(‘int64‘) with casting rule ‘same_kind‘

输入的数据类型为浮点型,需要的数据类型是整形。

可以通过下面的语句完成类型转换

np.array(dta,dtype=np.float) 

 

AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘xreadlines‘

  python 2 中有file.xreadlines(),作为一个迭代器,一次读取一行文件,在python3中已经移除,可使用file.readlines()代替

 

matrix 和 np.array 的逆

np.linalg.inv

matrix.I

  

错题本

标签:读取   can   fun   python3   lin   浮点   UNC   sub   attr   

原文地址:https://www.cnblogs.com/lizhiqing/p/10975718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!