📅  最后修改于: 2020-10-27 02:18:18             🧑  作者: Mango
本节的这一节说明如何使用给定的指定范围创建numpy数组。
它通过使用给定间隔内的均匀间隔的值来创建数组。下面给出了使用该函数的语法。
numpy.arrange(start, stop, step, dtype)
它接受以下参数。
组
import numpy as np
arr = np.arange(0,10,2,float)
print(arr)
输出:
[0. 2. 4. 6. 8.]
import numpy as np
arr = np.arange(10,100,5,int)
print("The array over the given range is ",arr)
输出:
The array over the given range is [10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 85 90 95]
它类似于安排函数。但是,它不允许我们在语法中指定步长。
取而代之的是,它仅返回指定时间段内均匀分隔的值。系统隐式计算步长。
语法如下。
numpy.linspace(start, stop, num, endpoint, retstep, dtype)
它接受以下参数。
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.]
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.]
它通过使用在对数刻度上均匀分隔的数字来创建数组。
语法如下。
numpy.logspace(start, stop, num, endpoint, base, dtype)
它接受以下参数。
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]
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]