arange
fun arange(start:
Double
, stop:
Double
, step:
Double
):
Matrix
<
Double
>
Creates an vector filled in by the given range information. The filled values will start at start and end at stop, with the interval between each value step.
fun <T> arange(start:
Double
, stop:
Double
, step:
Double
, dtype:
MatrixType
<
T
>):
Matrix
<
T
>