np_linspace
Generate evenly spaced numbers over a specified interval. Provide start, stop, and optionally number of samples and data type.
Instructions
Create an array with evenly spaced numbers over a specified interval.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start | Yes | Start of interval. | |
| stop | Yes | End of interval. | |
| num | No | Number of samples to generate (default: 50). | |
| dtype | No | The data type of the array (default: "float64"). | float64 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |