📜  Python numpy.linspace()

📅  最后修改于: 2020-10-28 00:53:47             🧑  作者: Mango

numpy.linspace()

它类似于安排函数。但是,它不允许我们在语法中指定步长。

取而代之的是,它仅返回指定时间段内均匀分隔的值。系统隐式计算步长。

句法

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

参量

它接受以下参数。

  • start:代表间隔的起始值。
  • stop:代表间隔的停止值。
  • num:要生成的间隔内均匀分布的样本数。默认值为50。
  • 端点:其真值指示停止值包含在间隔中。
  • rettstep:这必须是布尔值。表示连续数字之间的步骤和样本。
  • dtype:代表数组项的数据类型。

返回

返回指定范围内的数组。

例子1

import numpy as np
arr = 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 np
arr = np.linspace(10, 20, 5, endpoint = False)
print("The array over the given range is ",arr)

输出:

The array over the given range is  [10. 12. 14. 16. 18.]