numpy.linspace()函数

它类似于排列功能。但是, 它不允许我们在语法中指定步长。
取而代之的是, 它仅返回指定时间段内均匀分隔的值。系统隐式计算步长。
句法

numpy.linspace(start, stop, num, endpoint, retstep, dtype)

参数
它接受以下参数。
  1. start:代表间隔的起始值。
  2. stop:代表间隔的停止值。
  3. num:要生成的间隔内均匀分布的样本数。默认值为50。
  4. 端点:其真值指示停止值包含在间隔中。
  5. rettstep:这必须是布尔值。表示连续数字之间的步骤和样本。
  6. dtype:代表数组项的数据类型。
返回
返回指定范围内的数组。
例子1
import numpy as nparr = np.linspace(10, 20, 5)print("The array over the given range is ", arr)

输出
The array over the given range is[10.12.5 15.17.5 20.]

例子2
import numpy as nparr = np.linspace(10, 20, 5, endpoint = False)print("The array over the given range is ", arr)

【numpy.linspace()函数】输出
The array over the given range is[10. 12. 14. 16. 18.]

    推荐阅读