摘要: #pythonfrom numpy import * def loadData(filename): data=[] for line in open(filename).readlines(): ft=line.strip().split("\t") th=map(float,ft) data.append(th) ret... 阅读全文
posted @ 2017-06-14 23:28 semen 阅读(186) 评论(0) 推荐(0) 编辑