From da037aa879264e961943ddeb99df339462f518c4 Mon Sep 17 00:00:00 2001 From: Burkhard Mittelbach Date: Tue, 1 May 2018 17:41:42 +0200 Subject: [PATCH] Fixed stride for RealNDArray Signed-off-by: Burkhard Mittelbach --- jvm/src/main/kotlin/scientifik/kmath/structures/RealNDArray.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jvm/src/main/kotlin/scientifik/kmath/structures/RealNDArray.kt b/jvm/src/main/kotlin/scientifik/kmath/structures/RealNDArray.kt index c25dcde07..4d16f493d 100644 --- a/jvm/src/main/kotlin/scientifik/kmath/structures/RealNDArray.kt +++ b/jvm/src/main/kotlin/scientifik/kmath/structures/RealNDArray.kt @@ -12,7 +12,7 @@ private class RealNDField(shape: List) : NDField(shape, RealField) { private val strides: List by lazy { ArrayList(shape.size).apply { var current = 1 - add(0) + add(1) shape.forEach { current *= it add(current)