NumPy numpy.logspace()的使用

NumPy numpy.logspace()的使用

它通过在对数刻度上均匀分隔的数字创建一个数组。

语法

numpy.logspace(start, stop, num, endpoint, base, dtype)

参数

接受以下参数。

  1. start:表示基数区间的起始值。
  2. stop:表示基数区间的结束值。
  3. num:范围内的值的数量。
  4. endpoint:布尔类型的值。将stop所代表的值作为区间的最后一个值。
  5. base:表示对数空间的底数。
  6. dtype:表示数组项的数据类型。

返回值

返回指定范围内的数组。

示例1

import numpy as np
arr = np.logspace(10, 20, num = 5, endpoint = True)
print("The array over the given range is ",arr)

输出:

The array over the given range is  [1.00000000e+10 3.16227766e+12 1.00000000e+15 3.16227766e+17 1.00000000e+20]

示例2

import numpy as np
arr = np.logspace(10, 20, num = 5,base = 2, endpoint = True)
print("The array over the given range is ",arr)

输出:

The array over the given range is  [1.02400000e+03 5.79261875e+03 3.27680000e+04 1.85363800e+05
 1.04857600e+06]

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程