python机器学习基础之numpy.linspace使用详解
函数:numpy.linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None)
作用:在指定的间隔内返回均匀间隔的数字,返回num均匀分布的样本,在[start, stop]这个区间的端点可以任意的被排除在外。
参数解释:
start : scalar(标量)
The starting value of the sequence(序列的起始点).
stop : scalar
序列的结束点,除非endpoint被设置为False,在这种情况下, the sequence consists of all but the last of num + 1 evenly spaced samples(该序列包括所有除了最后的num+1上均匀分布的样本(感觉这样翻译有点坑)), 以致于stop被排除.当endpoint is False的时候注意步长的大小(下面有例子).
num : int, optional(可选)
生成的样本数,默认是50。必须是非负。
endpoint : bool, optional
如果是真,则一定包括stop,如果为False,一定不会有stop
retstep : bool, optional
If True, return (samples, step), where step is the spacing between samples.(看例子)
dtype : dtype, optional
The type of the output array. If dtype is not given, infer the data type from the other input arguments(推断这个输入用例从其他的输入中).
官网的例子
'>>> np.linspace(2.0, 3.0, num=5)
array([ 2. , 2.25, 2.5 , 2.75, 3. ])
'>>> np.linspace(2.0, 3.0, num=5, endpoint=False)
array([ 2. , 2.2, 2.4, 2.6, 2.8])
'>>> np.linspace(2.0, 3.0, num=5, retstep=True)
(array([ 2. , 2.25, 2.5 , 2.75, 3. ]), 0.25)
推荐阅读
-
Python机器学习基础之Numpy库的使用
-
python机器学习基础之numpy.linspace使用详解
-
Python机器学习之NumPy的使用
-
Python基础学习之函数方法实例详解
-
Python基础学习之基本数据结构详解【数字、字符串、列表、元组、集合、字典】
-
Python基础学习之函数方法实例详解
-
Python基础学习之基本数据结构详解【数字、字符串、列表、元组、集合、字典】
-
Python3.5基础之函数的定义与使用实例详解【参数、作用域、递归、重载等】
-
Python3.5基础之NumPy模块的使用图文与实例详解
-
Python机器学习之scikit-learn库中KNN算法的封装与使用方法