python获取等间隔的数组实例
可以使⽤numpy中的linspace函数
np.linspace(start, stop, num, endpoint, retstep, dtype)
python获取数组长度#start和stop为起始和终⽌位置,均为标量
#num为包括start和stop的间隔点总数,默认为50
#endpoint为bool值,为False时将会去掉最后⼀个点计算间隔
#restep为bool值,为True时会同时返回数据列表和间隔值
#dtype默认为输⼊变量的类型,给定类型后将会把⽣成的数组类型转为⽬标类型
np.linspace(1,3,num=4)
Out[17]: array([1. , 1.66666667, 2.33333333, 3. ])
np.linspace(1,3,num=4,endpoint=False)
Out[18]: array([1. , 1.5, 2. , 2.5])
np.linspace(1,3,num=4,endpoint=False,retstep=True)
Out[19]: (array([1. , 1.5, 2. , 2.5]), 0.5)
np.linspace(1,3,num=4,endpoint=False,retstep=True,dtype=float)
Out[20]: (array([1. , 1.5, 2. , 2.5]), 0.5)
np.linspace(1,3,num=4,endpoint=False,retstep=True,dtype=int)
Out[21]: (array([1, 1, 2, 2]), 0.5)
以上这篇python 获取等间隔的数组实例就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论