numpy包中的使用arange函数创建数值范围并返回 ndarray 对象,函数格式如下:
numpy.arange(start, stop, step, dtype)
根据 start 与stop指定的范围以及 step 设定的步长,生成一个ndarray。
函数参数说明:
strat:起始值,默认值为0
stop:终止值(不包含stop)
step:步长,默认为1
dtype:返回 ndarray 的数据类型,如果没有提供,则会使用输入数据的类型。
numpy包中的使用arange函数创建数值范围并返回 ndarray 对象,函数格式如下:
numpy.arange(start, stop, step, dtype)
根据 start 与stop指定的范围以及 step 设定的步长,生成一个ndarray。
函数参数说明:
strat:起始值,默认值为0
stop:终止值(不包含stop)
step:步长,默认为1
dtype:返回 ndarray 的数据类型,如果没有提供,则会使用输入数据的类型。