摘要: import numpy as np np.linspace(1,10,10) array([ 1., 2., 3., 4., 5., 6., 7., 8., 9., 10.]) np.arange(1,10,1) array([1, 2, 3, 4, 5, 6, 7, 8, 9]) np.linspace(1,10,10,endpoint=False) array([1. , 1.9, 2.8, 阅读全文
posted @ 2019-11-06 13:05 dreamfor 阅读(2180) 评论(0) 推荐(0) 编辑