api / koma.matrix / MatrixFactory / arange
arange
abstract fun arange(start:
Double
, stop:
Double
, increment:
Double
):
T
abstract fun arange(start:
Int
, stop:
Int
, increment:
Int
):
T
Creates a row-vector with the first value of start and the last value of stop, with increment steps between each value.
abstract fun arange(start:
Double
, stop:
Double
):
T
abstract fun arange(start:
Int
, stop:
Int
):
T
Creates a row-vector with the first value of start and the last value of stop, with unit steps between each value.