2018年9月15日

摘要: import numpy as npimport pandas as pdimport math #将二进制转化为十进制 x∈[0,10]def b2d(b): t = 0 for j in range(len(b)): t += b[j] * (math.pow(2, j)) t = t * 10 阅读全文
posted @ 2018-09-15 20:36 happygril3 阅读(321) 评论(0) 推荐(0)

导航