np_arange
Generate arrays with evenly spaced values between a start and stop interval. Specify step size and data type for custom intervals.
Instructions
Create an array with evenly spaced values within a given interval.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start | Yes | Start of interval. | |
| stop | Yes | End of interval (exclusive). | |
| step | No | Spacing between values (default: 1). | |
| dtype | No | The data type of the array (default: "float64"). | float64 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |