diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/cum-sum.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/cum-sum.md deleted file mode 100644 index 076848c..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/cum-sum.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [cumSum](.) - -# cumSum - -`external fun cumSum(source: DoubleArray, sourceOffset: Int, dest: DoubleArray, destOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L80) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/index.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/index.md deleted file mode 100644 index 3ad2f72..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/index.md +++ /dev/null @@ -1,35 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](.) - -# NativeSpeedups - -`object NativeSpeedups` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L3) - -### Functions - -| Name | Summary | -|---|---| -| [cumSum](cum-sum.md) | `external fun cumSum(source: DoubleArray, sourceOffset: Int, dest: DoubleArray, destOffset: Int, length: Int): Unit` | -| [sd](sd.md) | `external fun sd(values: DoubleArray, offset: Int, length: Int): Double` | -| [sum](sum.md) | `external fun sum(values: DoubleArray, offset: Int, length: Int): Double` | -| [unsafeDiv](unsafe-div.md) | `external fun unsafeDiv(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeDivScalar](unsafe-div-scalar.md) | `external fun unsafeDivScalar(src1: DoubleArray, srcOffset1: Int, update: Double, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeDot](unsafe-dot.md) | `external fun unsafeDot(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, length: Int): Double` | -| [unsafeExp](unsafe-exp.md) | `external fun unsafeExp(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeExpm1](unsafe-expm1.md) | `external fun unsafeExpm1(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeLog](unsafe-log.md) | `external fun unsafeLog(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeLog1p](unsafe-log1p.md) | `external fun unsafeLog1p(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeLogAddExp](unsafe-log-add-exp.md) | `external fun unsafeLogAddExp(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeLogRescale](unsafe-log-rescale.md) | `external fun unsafeLogRescale(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeLogSumExp](unsafe-log-sum-exp.md) | `external fun unsafeLogSumExp(src: DoubleArray, srcOffset: Int, length: Int): Double` | -| [unsafeMax](unsafe-max.md) | `external fun unsafeMax(values: DoubleArray, offset: Int, length: Int): Double` | -| [unsafeMin](unsafe-min.md) | `external fun unsafeMin(values: DoubleArray, offset: Int, length: Int): Double` | -| [unsafeMinus](unsafe-minus.md) | `external fun unsafeMinus(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeMinusScalar](unsafe-minus-scalar.md) | `external fun unsafeMinusScalar(src1: DoubleArray, srcOffset1: Int, update: Double, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeNegate](unsafe-negate.md) | `external fun unsafeNegate(src1: DoubleArray, srcOffset1: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafePlus](unsafe-plus.md) | `external fun unsafePlus(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafePlusScalar](unsafe-plus-scalar.md) | `external fun unsafePlusScalar(src1: DoubleArray, srcOffset1: Int, update: Double, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeScalarDiv](unsafe-scalar-div.md) | `external fun unsafeScalarDiv(update: Double, src1: DoubleArray, srcOffset1: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeTimes](unsafe-times.md) | `external fun unsafeTimes(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [unsafeTimesScalar](unsafe-times-scalar.md) | `external fun unsafeTimesScalar(src1: DoubleArray, srcOffset1: Int, update: Double, dst: DoubleArray, dstOffset: Int, length: Int): Unit` | -| [weightedMean](weighted-mean.md) | `external fun weightedMean(values: DoubleArray, valuesOffset: Int, weights: DoubleArray, weightsOffset: Int, length: Int): Double` | -| [weightedSum](weighted-sum.md) | `external fun weightedSum(values: DoubleArray, valuesOffset: Int, weights: DoubleArray, weightsOffset: Int, length: Int): Double` | diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/sd.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/sd.md deleted file mode 100644 index f80a6ab..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/sd.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [sd](.) - -# sd - -`external fun sd(values: DoubleArray, offset: Int, length: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L78) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/sum.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/sum.md deleted file mode 100644 index 3fd1130..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/sum.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [sum](.) - -# sum - -`external fun sum(values: DoubleArray, offset: Int, length: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L70) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-div-scalar.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-div-scalar.md deleted file mode 100644 index 0e968c6..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-div-scalar.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeDivScalar](.) - -# unsafeDivScalar - -`external fun unsafeDivScalar(src1: DoubleArray, srcOffset1: Int, update: Double, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L36) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-div.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-div.md deleted file mode 100644 index 9d28d33..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-div.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeDiv](.) - -# unsafeDiv - -`external fun unsafeDiv(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L20) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-dot.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-dot.md deleted file mode 100644 index 2b23dac..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-dot.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeDot](.) - -# unsafeDot - -`external fun unsafeDot(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, length: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L67) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-exp.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-exp.md deleted file mode 100644 index bd74850..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-exp.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeExp](.) - -# unsafeExp - -`external fun unsafeExp(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L46) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-expm1.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-expm1.md deleted file mode 100644 index f8aff9c..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-expm1.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeExpm1](.) - -# unsafeExpm1 - -`external fun unsafeExpm1(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L49) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log-add-exp.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log-add-exp.md deleted file mode 100644 index ee3a8ca..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log-add-exp.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeLogAddExp](.) - -# unsafeLogAddExp - -`external fun unsafeLogAddExp(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L60) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log-rescale.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log-rescale.md deleted file mode 100644 index 92e6714..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log-rescale.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeLogRescale](.) - -# unsafeLogRescale - -`external fun unsafeLogRescale(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L64) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log-sum-exp.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log-sum-exp.md deleted file mode 100644 index b6de4da..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log-sum-exp.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeLogSumExp](.) - -# unsafeLogSumExp - -`external fun unsafeLogSumExp(src: DoubleArray, srcOffset: Int, length: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L58) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log.md deleted file mode 100644 index 379edbc..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeLog](.) - -# unsafeLog - -`external fun unsafeLog(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L52) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log1p.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log1p.md deleted file mode 100644 index 9e4b1e6..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-log1p.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeLog1p](.) - -# unsafeLog1p - -`external fun unsafeLog1p(src: DoubleArray, srcOffset: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L55) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-max.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-max.md deleted file mode 100644 index 23aabd8..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-max.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeMax](.) - -# unsafeMax - -`external fun unsafeMax(values: DoubleArray, offset: Int, length: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L44) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-min.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-min.md deleted file mode 100644 index 636d252..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-min.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeMin](.) - -# unsafeMin - -`external fun unsafeMin(values: DoubleArray, offset: Int, length: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L42) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-minus-scalar.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-minus-scalar.md deleted file mode 100644 index 85812c2..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-minus-scalar.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeMinusScalar](.) - -# unsafeMinusScalar - -`external fun unsafeMinusScalar(src1: DoubleArray, srcOffset1: Int, update: Double, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L30) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-minus.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-minus.md deleted file mode 100644 index 028b6b8..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-minus.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeMinus](.) - -# unsafeMinus - -`external fun unsafeMinus(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L12) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-negate.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-negate.md deleted file mode 100644 index ed9c728..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-negate.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeNegate](.) - -# unsafeNegate - -`external fun unsafeNegate(src1: DoubleArray, srcOffset1: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L24) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-plus-scalar.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-plus-scalar.md deleted file mode 100644 index da2ffd8..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-plus-scalar.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafePlusScalar](.) - -# unsafePlusScalar - -`external fun unsafePlusScalar(src1: DoubleArray, srcOffset1: Int, update: Double, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L27) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-plus.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-plus.md deleted file mode 100644 index bc52db8..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-plus.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafePlus](.) - -# unsafePlus - -`external fun unsafePlus(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L8) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-scalar-div.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-scalar-div.md deleted file mode 100644 index 9661e1b..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-scalar-div.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeScalarDiv](.) - -# unsafeScalarDiv - -`external fun unsafeScalarDiv(update: Double, src1: DoubleArray, srcOffset1: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L39) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-times-scalar.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-times-scalar.md deleted file mode 100644 index ac4441a..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-times-scalar.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeTimesScalar](.) - -# unsafeTimesScalar - -`external fun unsafeTimesScalar(src1: DoubleArray, srcOffset1: Int, update: Double, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L33) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-times.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-times.md deleted file mode 100644 index 4680f7e..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/unsafe-times.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [unsafeTimes](.) - -# unsafeTimes - -`external fun unsafeTimes(src1: DoubleArray, srcOffset1: Int, src2: DoubleArray, srcOffset2: Int, dst: DoubleArray, dstOffset: Int, length: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L16) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/weighted-mean.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/weighted-mean.md deleted file mode 100644 index 7e037fa..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/weighted-mean.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [weightedMean](.) - -# weightedMean - -`external fun weightedMean(values: DoubleArray, valuesOffset: Int, weights: DoubleArray, weightsOffset: Int, length: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L75) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/weighted-sum.md b/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/weighted-sum.md deleted file mode 100644 index b3e9f97..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-native-speedups/weighted-sum.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [NativeSpeedups](index.md) / [weightedSum](.) - -# weightedSum - -`external fun weightedSum(values: DoubleArray, valuesOffset: Int, weights: DoubleArray, weightsOffset: Int, length: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/NativeSpeedups.kt#L72) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-resource-library/-init-.md b/docs/0.3.2/org.jetbrains.bio.viktor/-resource-library/-init-.md deleted file mode 100644 index f920f6e..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-resource-library/-init-.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [ResourceLibrary](index.md) / [<init>](.) - -# <init> - -`ResourceLibrary(name: String)` \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-resource-library/index.md b/docs/0.3.2/org.jetbrains.bio.viktor/-resource-library/index.md deleted file mode 100644 index f554ba0..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-resource-library/index.md +++ /dev/null @@ -1,17 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [ResourceLibrary](.) - -# ResourceLibrary - -`class ResourceLibrary` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Loader.kt#L7) - -### Constructors - -| Name | Summary | -|---|---| -| [<init>](-init-.md) | `ResourceLibrary(name: String)` | - -### Functions - -| Name | Summary | -|---|---| -| [install](install.md) | `fun install(): Unit` | diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-resource-library/install.md b/docs/0.3.2/org.jetbrains.bio.viktor/-resource-library/install.md deleted file mode 100644 index fee7c6f..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-resource-library/install.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [ResourceLibrary](index.md) / [install](.) - -# install - -`fun install(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Loader.kt#L9) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/-init-.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/-init-.md deleted file mode 100644 index 0bb9c42..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/-init-.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [<init>](.) - -# <init> - -`StridedMatrix2(numRows: Int, numColumns: Int)` \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/-t.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/-t.md deleted file mode 100644 index 80342db..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/-t.md +++ /dev/null @@ -1,8 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [T](.) - -# T - -`val T: `[`StridedMatrix2`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L103) - -An alias for [transpose](transpose.md). - diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/column-stride.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/column-stride.md deleted file mode 100644 index 7d8b709..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/column-stride.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [columnStride](.) - -# columnStride - -`val columnStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L17) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/columns-number.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/columns-number.md deleted file mode 100644 index b441b7b..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/columns-number.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [columnsNumber](.) - -# columnsNumber - -`val columnsNumber: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L14) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/data.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/data.md deleted file mode 100644 index 68f28da..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/data.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [data](.) - -# data - -`val data: DoubleArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L15) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/equals.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/equals.md deleted file mode 100644 index 1437cfb..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/equals.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [equals](.) - -# equals - -`fun equals(other: Any?): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L176) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/hash-code.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/hash-code.md deleted file mode 100644 index 3879af0..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/hash-code.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [hashCode](.) - -# hashCode - -`fun hashCode(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L196) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/offset.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/offset.md deleted file mode 100644 index f5ade0f..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/offset.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [offset](.) - -# offset - -`val offset: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L15) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/row-stride.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/row-stride.md deleted file mode 100644 index 9b82626..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/row-stride.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [rowStride](.) - -# rowStride - -`val rowStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L16) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/rows-number.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/rows-number.md deleted file mode 100644 index 1922c3a..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/rows-number.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [rowsNumber](.) - -# rowsNumber - -`val rowsNumber: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L14) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/set.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/set.md deleted file mode 100644 index 40980eb..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/set.md +++ /dev/null @@ -1,9 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [set](.) - -# set - -`operator fun set(r: Int, c: Int, value: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L44) -`operator fun set(r: Int, other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L87) -`operator fun set(r: Int, init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L89) -`operator fun set(any: `[`_I`](../_-i.md)`, c: Int, other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L98) -`operator fun set(any: `[`_I`](../_-i.md)`, c: Int, init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L100) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/to-array.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/to-array.md deleted file mode 100644 index 7021e34..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/to-array.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [toArray](.) - -# toArray - -`fun toArray(): Array` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L151) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/to-string.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/to-string.md deleted file mode 100644 index eede2d0..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/to-string.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [toString](.) - -# toString - -`fun toString(): String` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L174) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/transpose.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/transpose.md deleted file mode 100644 index 7c55c89..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/transpose.md +++ /dev/null @@ -1,8 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [transpose](.) - -# transpose - -`fun transpose(): `[`StridedMatrix2`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L106) - -Constructs matrix transpose in O(1) time. - diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/-init-.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/-init-.md deleted file mode 100644 index 25384bf..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/-init-.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [<init>](.) - -# <init> - -`StridedMatrix3(depth: Int, numRows: Int, numColumns: Int)` \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/column-stride.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/column-stride.md deleted file mode 100644 index bd77206..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/column-stride.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [columnStride](.) - -# columnStride - -`val columnStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L14) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/columns-number.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/columns-number.md deleted file mode 100644 index 9333e76..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/columns-number.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [columnsNumber](.) - -# columnsNumber - -`val columnsNumber: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L12) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/copy-to.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/copy-to.md deleted file mode 100644 index 1c03651..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/copy-to.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [copyTo](.) - -# copyTo - -`fun copyTo(other: `[`StridedMatrix3`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L70) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/data.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/data.md deleted file mode 100644 index b970ace..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/data.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [data](.) - -# data - -`val data: DoubleArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L13) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/depth-stride.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/depth-stride.md deleted file mode 100644 index 3699d72..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/depth-stride.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [depthStride](.) - -# depthStride - -`val depthStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L14) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/depth.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/depth.md deleted file mode 100644 index f7ce020..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/depth.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [depth](.) - -# depth - -`val depth: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L12) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/equals.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/equals.md deleted file mode 100644 index 7e20753..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/equals.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [equals](.) - -# equals - -`fun equals(other: Any?): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L111) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/hash-code.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/hash-code.md deleted file mode 100644 index 48cf4af..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/hash-code.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [hashCode](.) - -# hashCode - -`fun hashCode(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L132) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/offset.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/offset.md deleted file mode 100644 index abf16ad..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/offset.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [offset](.) - -# offset - -`val offset: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L13) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/row-stride.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/row-stride.md deleted file mode 100644 index 9cde8e0..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/row-stride.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [rowStride](.) - -# rowStride - -`val rowStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L14) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/rows-number.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/rows-number.md deleted file mode 100644 index 7e6088e..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/rows-number.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [rowsNumber](.) - -# rowsNumber - -`val rowsNumber: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L12) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/set.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/set.md deleted file mode 100644 index dac24c1..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/set.md +++ /dev/null @@ -1,9 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [set](.) - -# set - -`operator fun set(d: Int, r: Int, c: Int, value: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L47) -`operator fun set(d: Int, other: `[`StridedMatrix2`](../-strided-matrix2/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L87) -`operator fun set(d: Int, other: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L89) -`operator fun set(d: Int, r: Int, other: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L103) -`operator fun set(d: Int, r: Int, other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L105) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/to-array.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/to-array.md deleted file mode 100644 index 65df57a..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/to-array.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [toArray](.) - -# toArray - -`fun toArray(): Array>` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L107) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/to-string.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/to-string.md deleted file mode 100644 index 1f674da..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/to-string.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [toString](.) - -# toString - -`fun toString(): String` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L109) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/-t.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/-t.md deleted file mode 100644 index 6a51d4c..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/-t.md +++ /dev/null @@ -1,8 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [T](.) - -# T - -`val T: `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L121) - -An alias for [transpose](transpose.md). - diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/contains.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/contains.md deleted file mode 100644 index d31eab2..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/contains.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [contains](.) - -# contains - -`operator fun contains(other: Double): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L96) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/copy.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/copy.md deleted file mode 100644 index 1d03208..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/copy.md +++ /dev/null @@ -1,8 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [copy](.) - -# copy - -`fun copy(): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L139) - -Returns a copy of the elements in this vector. - diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/data.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/data.md deleted file mode 100644 index 22876e3..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/data.md +++ /dev/null @@ -1,8 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [data](.) - -# data - -`val data: DoubleArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L42) - -Raw data array. - diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/div-assign.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/div-assign.md deleted file mode 100644 index 1ff72bd..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/div-assign.md +++ /dev/null @@ -1,6 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [divAssign](.) - -# divAssign - -`open operator fun divAssign(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L402) -`open operator fun divAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L411) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/div.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/div.md deleted file mode 100644 index 4017640..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/div.md +++ /dev/null @@ -1,6 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [div](.) - -# div - -`operator fun div(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L400) -`operator fun div(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L409) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/equals.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/equals.md deleted file mode 100644 index f3a868a..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/equals.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [equals](.) - -# equals - -`open fun equals(other: Any?): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L477) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/exp.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/exp.md deleted file mode 100644 index da41c5b..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/exp.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [exp](.) - -# exp - -`fun exp(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L233) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/expm1.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/expm1.md deleted file mode 100644 index 41f2d5a..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/expm1.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [expm1](.) - -# expm1 - -`fun expm1(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L246) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/fill.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/fill.md deleted file mode 100644 index e3fed83..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/fill.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [fill](.) - -# fill - -`open fun fill(init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L106) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/get.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/get.md deleted file mode 100644 index e1fc39e..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/get.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [get](.) - -# get - -`operator fun get(pos: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L52) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/hash-code.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/hash-code.md deleted file mode 100644 index 05ed18d..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/hash-code.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [hashCode](.) - -# hashCode - -`open fun hashCode(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L497) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/indices.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/indices.md deleted file mode 100644 index 908523a..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/indices.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [indices](.) - -# indices - -`val indices: IntRange` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L50) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/is-empty.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/is-empty.md deleted file mode 100644 index 8dbdcf2..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/is-empty.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [isEmpty](.) - -# isEmpty - -`fun isEmpty(): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L417) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/is-not-empty.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/is-not-empty.md deleted file mode 100644 index b14a007..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/is-not-empty.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [isNotEmpty](.) - -# isNotEmpty - -`fun isNotEmpty(): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L419) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log.md deleted file mode 100644 index 53994a8..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [log](.) - -# log - -`fun log(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L261) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log1p.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log1p.md deleted file mode 100644 index 0afe76d..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log1p.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [log1p](.) - -# log1p - -`fun log1p(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L274) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/minus-assign.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/minus-assign.md deleted file mode 100644 index d7e0297..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/minus-assign.md +++ /dev/null @@ -1,6 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [minusAssign](.) - -# minusAssign - -`open operator fun minusAssign(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L368) -`open operator fun minusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L377) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/minus.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/minus.md deleted file mode 100644 index 5aae146..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/minus.md +++ /dev/null @@ -1,6 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [minus](.) - -# minus - -`operator fun minus(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L366) -`operator fun minus(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L375) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/plus-assign.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/plus-assign.md deleted file mode 100644 index abeca85..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/plus-assign.md +++ /dev/null @@ -1,6 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [plusAssign](.) - -# plusAssign - -`open operator fun plusAssign(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L351) -`open operator fun plusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L360) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/plus.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/plus.md deleted file mode 100644 index 5598012..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/plus.md +++ /dev/null @@ -1,6 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [plus](.) - -# plus - -`operator fun plus(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L349) -`operator fun plus(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L358) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/reverse.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/reverse.md deleted file mode 100644 index e22d081..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/reverse.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [reverse](.) - -# reverse - -`fun reverse(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L112) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/stride.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/stride.md deleted file mode 100644 index a02c8e6..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/stride.md +++ /dev/null @@ -1,8 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [stride](.) - -# stride - -`val stride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L48) - -Indexing step. - diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/times-assign.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/times-assign.md deleted file mode 100644 index 167bf34..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/times-assign.md +++ /dev/null @@ -1,6 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [timesAssign](.) - -# timesAssign - -`open operator fun timesAssign(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L385) -`open operator fun timesAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L394) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/times.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/times.md deleted file mode 100644 index dae0f09..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/times.md +++ /dev/null @@ -1,6 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [times](.) - -# times - -`operator fun times(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L383) -`operator fun times(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L392) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/to-array.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/to-array.md deleted file mode 100644 index 7fea4f5..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/to-array.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [toArray](.) - -# toArray - -`open fun toArray(): DoubleArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L421) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/to-string.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/to-string.md deleted file mode 100644 index 346c618..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/to-string.md +++ /dev/null @@ -1,6 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [toString](.) - -# toString - -`fun toString(maxDisplay: Int, format: `[`DecimalFormat`](http://docs.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html)` = DecimalFormat("#.####")): String` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L443) -`open fun toString(): String` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L475) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/unary-minus.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/unary-minus.md deleted file mode 100644 index 9d511ea..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/unary-minus.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [unaryMinus](.) - -# unaryMinus - -`open operator fun unaryMinus(): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L338) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/unary-plus.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/unary-plus.md deleted file mode 100644 index 6e168ef..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/unary-plus.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [unaryPlus](.) - -# unaryPlus - -`operator fun unaryPlus(): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L336) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/unsafe-index.md b/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/unsafe-index.md deleted file mode 100644 index e4416e5..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/unsafe-index.md +++ /dev/null @@ -1,5 +0,0 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [unsafeIndex](.) - -# unsafeIndex - -`protected open fun unsafeIndex(pos: Int): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L60) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/arg-max.md b/docs/0.3.2/org.jetbrains.bio.viktor/arg-max.md deleted file mode 100644 index 6869f64..0000000 --- a/docs/0.3.2/org.jetbrains.bio.viktor/arg-max.md +++ /dev/null @@ -1,8 +0,0 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [argMax](.) - -# argMax - -`fun `[`StridedVector`](-strided-vector/index.md)`.argMax(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt#L42) - -Returns the index of the maxmimum element. - diff --git a/docs/0.3.2/alltypes/index.md b/docs/0.3.4/alltypes/index.md similarity index 80% rename from docs/0.3.2/alltypes/index.md rename to docs/0.3.4/alltypes/index.md index da331c0..eb1db94 100644 --- a/docs/0.3.2/alltypes/index.md +++ b/docs/0.3.4/alltypes/index.md @@ -10,11 +10,12 @@ | [org.jetbrains.bio.viktor.FlatMatrixOps](../org.jetbrains.bio.viktor/-flat-matrix-ops/index.md) | A common interface for whole-matrix operations. | | [org.jetbrains.bio.viktor.KahanSum](../org.jetbrains.bio.viktor/-kahan-sum/index.md) | Kahan-Babuska summation. | | [org.jetbrains.bio.viktor.LargeDenseVector](../org.jetbrains.bio.viktor/-large-dense-vector/index.md) | A contiguous vector of size at least `[DenseVector.DENSE_SPLIT_SIZE] + 1`. | -| [org.jetbrains.bio.viktor.NativeSpeedups](../org.jetbrains.bio.viktor/-native-speedups/index.md) | | -| [org.jetbrains.bio.viktor.ResourceLibrary](../org.jetbrains.bio.viktor/-resource-library/index.md) | | +| [org.jetbrains.bio.npy.NpyArray](../org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/index.md) (extensions in package org.jetbrains.bio.viktor) | | +| [org.jetbrains.bio.npy.NpyFile](../org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-file/index.md) (extensions in package org.jetbrains.bio.viktor) | | | [org.jetbrains.bio.viktor.SmallDenseVector](../org.jetbrains.bio.viktor/-small-dense-vector/index.md) | A contiguous strided vector of size at most [DenseVector.DENSE_SPLIT_SIZE](../org.jetbrains.bio.viktor/-dense-vector/-d-e-n-s-e_-s-p-l-i-t_-s-i-z-e.md). | | [org.jetbrains.bio.viktor.StridedMatrix](../org.jetbrains.bio.viktor/-strided-matrix/index.md) | A strided matrix stored in a flat [DoubleArray](#). | | [org.jetbrains.bio.viktor.StridedMatrix2](../org.jetbrains.bio.viktor/-strided-matrix2/index.md) | A specialization of [StridedMatrix](../org.jetbrains.bio.viktor/-strided-matrix/index.md) for 2-D data. | | [org.jetbrains.bio.viktor.StridedMatrix3](../org.jetbrains.bio.viktor/-strided-matrix3/index.md) | A specialization of [StridedMatrix](../org.jetbrains.bio.viktor/-strided-matrix/index.md) for 3-D data. | | [org.jetbrains.bio.viktor.StridedVector](../org.jetbrains.bio.viktor/-strided-vector/index.md) | A strided vector stored in a [DoubleArray](#). | +| [org.jetbrains.bio.npy.NpzFile.Writer](../org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npz-file.-writer/index.md) (extensions in package org.jetbrains.bio.viktor) | | | [org.jetbrains.bio.viktor._I](../org.jetbrains.bio.viktor/_-i.md) | A special object used to denote all indices. | diff --git a/docs/0.3.2/index.md b/docs/0.3.4/index.md similarity index 93% rename from docs/0.3.2/index.md rename to docs/0.3.4/index.md index d0b23fd..d34f381 100644 --- a/docs/0.3.2/index.md +++ b/docs/0.3.4/index.md @@ -1,4 +1,4 @@ -[0.3.2](.) +[0.3.4](.) ### Packages diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/-d-e-n-s-e_-s-p-l-i-t_-s-i-z-e.md b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/-d-e-n-s-e_-s-p-l-i-t_-s-i-z-e.md similarity index 65% rename from docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/-d-e-n-s-e_-s-p-l-i-t_-s-i-z-e.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/-d-e-n-s-e_-s-p-l-i-t_-s-i-z-e.md index faed92c..c638317 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/-d-e-n-s-e_-s-p-l-i-t_-s-i-z-e.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/-d-e-n-s-e_-s-p-l-i-t_-s-i-z-e.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [DENSE_SPLIT_SIZE](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [DENSE_SPLIT_SIZE](.) # DENSE_SPLIT_SIZE -`const val DENSE_SPLIT_SIZE: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L32) +`const val DENSE_SPLIT_SIZE: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L32) We only use SIMD operations on vectors larger than the split boundary. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/-init-.md b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/-init-.md similarity index 76% rename from docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/-init-.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/-init-.md index d64d422..e031c35 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/-init-.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/-init-.md @@ -1,4 +1,4 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [<init>](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [<init>](.) # <init> diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/copy-to.md b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/copy-to.md similarity index 77% rename from docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/copy-to.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/copy-to.md index b0391e8..15ab0c8 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/copy-to.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/copy-to.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [copyTo](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [copyTo](.) # copyTo -`open fun copyTo(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L17) +`open fun copyTo(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L17) Overrides [StridedVector.copyTo](../-strided-vector/copy-to.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/fill.md b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/fill.md similarity index 62% rename from docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/fill.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/fill.md index c8b37b9..b0e692a 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/fill.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/fill.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [fill](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [fill](.) # fill -`open fun fill(init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L13) +`open fun fill(init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L13) Overrides [StridedVector.fill](../-strided-vector/fill.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/index.md similarity index 96% rename from docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/index.md index 4f01e42..55a2c17 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](.) # DenseVector -`open class DenseVector : `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L9) +`open class DenseVector : `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L9) A contiguous strided vector. @@ -26,6 +26,7 @@ Sergei Lebedev | [data](../-strided-vector/data.md) | `val data: DoubleArray`
Raw data array. | | [indices](../-strided-vector/indices.md) | `val indices: IntRange` | | [offset](../-strided-vector/offset.md) | `val offset: Int`
Offset of the first vector element in the raw data array. | +| [shape](../-strided-vector/shape.md) | `val shape: IntArray`
Returns the shape of this vector. | | [size](../-strided-vector/size.md) | `val size: Int`
Number of elements in the raw data array to use. | | [stride](../-strided-vector/stride.md) | `val stride: Int`
Indexing step. | @@ -81,7 +82,7 @@ Sergei Lebedev | [sum](../-strided-vector/sum.md) | `open fun sum(): Double`
Returns the sum of the elements using balanced summation. | | [times](../-strided-vector/times.md) | `operator fun times(other: `[`StridedVector`](../-strided-vector/index.md)`): `
`operator fun times(update: Double): ` | | [timesAssign](../-strided-vector/times-assign.md) | `open operator fun timesAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit`
`open operator fun timesAssign(update: Double): Unit` | -| [toString](../-strided-vector/to-string.md) | `fun toString(maxDisplay: Int, format: `[`DecimalFormat`](http://docs.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html)` = DecimalFormat("#.####")): String`
`open fun toString(): String` | +| [toString](../-strided-vector/to-string.md) | `open fun toString(): String` | | [transpose](../-strided-vector/transpose.md) | `fun transpose(): `[`StridedMatrix2`](../-strided-matrix2/index.md)
Constructs a column-vector view of this vector in O(1) time. | | [unaryMinus](../-strided-vector/unary-minus.md) | `open operator fun unaryMinus(): `[`StridedVector`](../-strided-vector/index.md) | | [unaryPlus](../-strided-vector/unary-plus.md) | `operator fun unaryPlus(): `[`StridedVector`](../-strided-vector/index.md) | @@ -96,7 +97,7 @@ Sergei Lebedev | Name | Summary | |---|---| -| [argMax](../arg-max.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argMax(): Int`
Returns the index of the maxmimum element. | +| [argMax](../arg-max.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argMax(): Int`
Returns the index of the maximum element. | | [argMin](../arg-min.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argMin(): Int`
Returns the index of the minimum element. | | [argSort](../arg-sort.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argSort(reverse: Boolean = false): IntArray`
Returns a permutation of indices which makes the vector sorted. | | [partition](../partition.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.partition(p: Int): Unit`
Partitions the vector. | diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/to-array.md b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/to-array.md similarity index 63% rename from docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/to-array.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/to-array.md index bed2506..dad4968 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/to-array.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/to-array.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [toArray](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [toArray](.) # toArray -`open fun toArray(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L26) +`open fun toArray(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L26) Overrides [StridedVector.toArray](../-strided-vector/to-array.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/unsafe-index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/unsafe-index.md similarity index 66% rename from docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/unsafe-index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/unsafe-index.md index 4ec06c3..1f129dd 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-dense-vector/unsafe-index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-dense-vector/unsafe-index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [unsafeIndex](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [unsafeIndex](.) # unsafeIndex -`protected open fun unsafeIndex(pos: Int): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L11) +`protected open fun unsafeIndex(pos: Int): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L11) Overrides [StridedVector.unsafeIndex](../-strided-vector/unsafe-index.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-max.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-max.md similarity index 53% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-max.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-max.md index d1501b7..993639d 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-max.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-max.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [argMax](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [argMax](.) # argMax -`open fun argMax(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L88) \ No newline at end of file +`open fun argMax(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L88) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-min.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-min.md similarity index 53% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-min.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-min.md index d2ed5d2..60e7bc3 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-min.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/arg-min.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [argMin](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [argMin](.) # argMin -`open fun argMin(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L92) \ No newline at end of file +`open fun argMin(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L92) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/check-dimensions.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/check-dimensions.md similarity index 66% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/check-dimensions.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/check-dimensions.md index eb7c6cb..63756f0 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/check-dimensions.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/check-dimensions.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [checkDimensions](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [checkDimensions](.) # checkDimensions -`abstract fun checkDimensions(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L78) +`abstract fun checkDimensions(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L78) Ensures a given matrix has the same dimensions as this matrix. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/copy.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/copy.md similarity index 58% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/copy.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/copy.md index 27a3645..0165922 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/copy.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/copy.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [copy](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [copy](.) # copy -`abstract fun copy(): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L75) +`abstract fun copy(): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L75) Returns the copy of this matrix. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/div-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/div-assign.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/div-assign.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/div-assign.md index 0e8b7ed..95823e8 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/div-assign.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/div-assign.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [divAssign](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [divAssign](.) # divAssign -`open operator fun divAssign(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L172) -`open operator fun divAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L179) \ No newline at end of file +`open operator fun divAssign(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L172) +`open operator fun divAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L179) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/div.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/div.md similarity index 59% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/div.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/div.md index 4ee7a3e..ebed1fa 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/div.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/div.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [div](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [div](.) # div -`open operator fun div(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L170) -`open operator fun div(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L177) \ No newline at end of file +`open operator fun div(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L170) +`open operator fun div(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L177) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/exp-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/exp-in-place.md similarity index 55% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/exp-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/exp-in-place.md index 8400217..279e676 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/exp-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/exp-in-place.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [expInPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [expInPlace](.) # expInPlace -`open fun expInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L98) \ No newline at end of file +`open fun expInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L98) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/exp.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/exp.md similarity index 53% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/exp.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/exp.md index e31bf58..166f7b8 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/exp.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/exp.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [exp](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [exp](.) # exp -`open fun exp(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L100) \ No newline at end of file +`open fun exp(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L100) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1-in-place.md similarity index 56% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1-in-place.md index 4bf867f..e3eed2d 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1-in-place.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [expm1InPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [expm1InPlace](.) # expm1InPlace -`open fun expm1InPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L102) \ No newline at end of file +`open fun expm1InPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L102) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1.md similarity index 54% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1.md index 0ac17b6..de532ac 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/expm1.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [expm1](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [expm1](.) # expm1 -`open fun expm1(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L104) \ No newline at end of file +`open fun expm1(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L104) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/fill.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/fill.md similarity index 54% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/fill.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/fill.md index a392132..c2daa1b 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/fill.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/fill.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [fill](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [fill](.) # fill -`open fun fill(init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L80) \ No newline at end of file +`open fun fill(init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L80) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/flatten.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/flatten.md similarity index 69% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/flatten.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/flatten.md index a6ebf8b..ca90784 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/flatten.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/flatten.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [flatten](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [flatten](.) # flatten -`abstract fun flatten(): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L72) +`abstract fun flatten(): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L72) Returns a flat view of this matrix. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/index.md similarity index 96% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/index.md index a0be12b..bfffe40 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](.) # FlatMatrixOps -`interface FlatMatrixOps>` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L66) +`interface FlatMatrixOps>` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L66) A common interface for whole-matrix operations. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-add-exp.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-add-exp.md similarity index 59% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-add-exp.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-add-exp.md index b9c8203..563b983 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-add-exp.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-add-exp.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [logAddExp](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [logAddExp](.) # logAddExp -`open infix fun logAddExp(other: T): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L114) -`open fun logAddExp(other: T, dst: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L116) \ No newline at end of file +`open infix fun logAddExp(other: T): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L114) +`open fun logAddExp(other: T, dst: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L116) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-in-place.md similarity index 55% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-in-place.md index c7f3f6e..e890dcb 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-in-place.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [logInPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [logInPlace](.) # logInPlace -`open fun logInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L106) \ No newline at end of file +`open fun logInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L106) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-rescale.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-rescale.md similarity index 55% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-rescale.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-rescale.md index 171fcfb..5887ab2 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-rescale.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-rescale.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [logRescale](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [logRescale](.) # logRescale -`open fun logRescale(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L96) \ No newline at end of file +`open fun logRescale(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L96) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-sum-exp.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-sum-exp.md similarity index 55% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-sum-exp.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-sum-exp.md index 3fb1601..3681f20 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log-sum-exp.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log-sum-exp.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [logSumExp](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [logSumExp](.) # logSumExp -`open fun logSumExp(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L94) \ No newline at end of file +`open fun logSumExp(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L94) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log.md similarity index 53% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log.md index 911063e..06035b2 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [log](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [log](.) # log -`open fun log(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L108) \ No newline at end of file +`open fun log(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L108) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p-in-place.md similarity index 56% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p-in-place.md index 0f9a98a..9d3006c 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p-in-place.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [log1pInPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [log1pInPlace](.) # log1pInPlace -`open fun log1pInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L110) \ No newline at end of file +`open fun log1pInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L110) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p.md similarity index 54% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p.md index d9ce1b1..b0a8cdf 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/log1p.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [log1p](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [log1p](.) # log1p -`open fun log1p(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L112) \ No newline at end of file +`open fun log1p(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L112) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/max.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/max.md similarity index 52% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/max.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/max.md index 56e680e..aa1adc3 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/max.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/max.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [max](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [max](.) # max -`open fun max(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L86) \ No newline at end of file +`open fun max(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L86) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/mean.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/mean.md similarity index 52% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/mean.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/mean.md index 8e5b759..529b1da 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/mean.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/mean.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [mean](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [mean](.) # mean -`open fun mean(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L82) \ No newline at end of file +`open fun mean(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L82) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/min.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/min.md similarity index 52% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/min.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/min.md index eba9ee1..7b5b704 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/min.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/min.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [min](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [min](.) # min -`open fun min(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L90) \ No newline at end of file +`open fun min(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L90) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/minus-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/minus-assign.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/minus-assign.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/minus-assign.md index 1c5fae1..771737f 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/minus-assign.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/minus-assign.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [minusAssign](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [minusAssign](.) # minusAssign -`open operator fun minusAssign(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L146) -`open operator fun minusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L153) \ No newline at end of file +`open operator fun minusAssign(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L146) +`open operator fun minusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L153) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/minus.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/minus.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/minus.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/minus.md index 44ec5d7..6ef709a 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/minus.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/minus.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [minus](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [minus](.) # minus -`open operator fun minus(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L144) -`open operator fun minus(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L151) \ No newline at end of file +`open operator fun minus(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L144) +`open operator fun minus(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L151) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/plus-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/plus-assign.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/plus-assign.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/plus-assign.md index 2450930..46d860e 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/plus-assign.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/plus-assign.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [plusAssign](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [plusAssign](.) # plusAssign -`open operator fun plusAssign(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L133) -`open operator fun plusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L140) \ No newline at end of file +`open operator fun plusAssign(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L133) +`open operator fun plusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L140) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/plus.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/plus.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/plus.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/plus.md index 82346f3..f537502 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/plus.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/plus.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [plus](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [plus](.) # plus -`open operator fun plus(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L131) -`open operator fun plus(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L138) \ No newline at end of file +`open operator fun plus(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L131) +`open operator fun plus(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L138) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/sum.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/sum.md similarity index 52% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/sum.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/sum.md index b90ecb2..5f5afbd 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/sum.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/sum.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [sum](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [sum](.) # sum -`open fun sum(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L84) \ No newline at end of file +`open fun sum(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L84) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/times-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/times-assign.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/times-assign.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/times-assign.md index c6c791b..d24c010 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/times-assign.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/times-assign.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [timesAssign](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [timesAssign](.) # timesAssign -`open operator fun timesAssign(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L159) -`open operator fun timesAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L166) \ No newline at end of file +`open operator fun timesAssign(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L159) +`open operator fun timesAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L166) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/times.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/times.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/times.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/times.md index 2dd10e4..e4791c6 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/times.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/times.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [times](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [times](.) # times -`open operator fun times(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L157) -`open operator fun times(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L164) \ No newline at end of file +`open operator fun times(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L157) +`open operator fun times(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L164) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-minus.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-minus.md similarity index 58% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-minus.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-minus.md index 5076ab0..2ce86a4 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-minus.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-minus.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [unaryMinus](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [unaryMinus](.) # unaryMinus -`open operator fun unaryMinus(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L124) \ No newline at end of file +`open operator fun unaryMinus(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L124) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-plus.md b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-plus.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-plus.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-plus.md index 590f2cb..19813c3 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-plus.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-flat-matrix-ops/unary-plus.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [unaryPlus](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [unaryPlus](.) # unaryPlus -`open operator fun unaryPlus(): `[`FlatMatrixOps`](index.md)`` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L122) \ No newline at end of file +`open operator fun unaryPlus(): `[`FlatMatrixOps`](index.md)`` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L122) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/-init-.md b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/-init-.md similarity index 79% rename from docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/-init-.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/-init-.md index d978eb1..b975198 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/-init-.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/-init-.md @@ -1,4 +1,4 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](index.md) / [<init>](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](index.md) / [<init>](.) # <init> diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/feed.md b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/feed.md similarity index 62% rename from docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/feed.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/feed.md index c480b8f..0d85595 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/feed.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/feed.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](index.md) / [feed](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](index.md) / [feed](.) # feed -`fun feed(value: Double): `[`KahanSum`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L33) +`fun feed(value: Double): `[`KahanSum`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L33) Supplies a number to be added to the accumulator. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/index.md similarity index 84% rename from docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/index.md index 6bc8fc2..210b2e0 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](.) # KahanSum -`class KahanSum` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L29) +`class KahanSum` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L29) Kahan-Babuska summation. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/plus-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/plus-assign.md similarity index 56% rename from docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/plus-assign.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/plus-assign.md index 82d67db..f1ea619 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/plus-assign.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/plus-assign.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](index.md) / [plusAssign](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](index.md) / [plusAssign](.) # plusAssign -`operator fun plusAssign(value: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L45) \ No newline at end of file +`operator fun plusAssign(value: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L45) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/result.md b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/result.md similarity index 57% rename from docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/result.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/result.md index 7b5e398..af518c6 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-kahan-sum/result.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-kahan-sum/result.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](index.md) / [result](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [KahanSum](index.md) / [result](.) # result -`fun result(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L50) +`fun result(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L50) Returns the sum accumulated so far. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/-init-.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/-init-.md similarity index 79% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/-init-.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/-init-.md index 7379270..be6522f 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/-init-.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/-init-.md @@ -1,4 +1,4 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [<init>](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [<init>](.) # <init> diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/cum-sum.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/cum-sum.md similarity index 69% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/cum-sum.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/cum-sum.md index 9468035..0677dd5 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/cum-sum.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/cum-sum.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [cumSum](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [cumSum](.) # cumSum -`fun cumSum(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L68) +`fun cumSum(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L68) Overrides [StridedVector.cumSum](../-strided-vector/cum-sum.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/div-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/div-assign.md similarity index 70% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/div-assign.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/div-assign.md index d51957f..a7f532e 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/div-assign.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/div-assign.md @@ -1,13 +1,13 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [divAssign](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [divAssign](.) # divAssign -`fun divAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L167) +`fun divAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L167) Overrides [StridedVector.divAssign](../-strided-vector/div-assign.md) -`fun divAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L171) +`fun divAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L171) Overrides [StridedVector.divAssign](../-strided-vector/div-assign.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/dot.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/dot.md similarity index 71% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/dot.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/dot.md index 36e1890..c735891 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/dot.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/dot.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [dot](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [dot](.) # dot -`fun dot(other: `[`StridedVector`](../-strided-vector/index.md)`): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L74) +`fun dot(other: `[`StridedVector`](../-strided-vector/index.md)`): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L74) Overrides [StridedVector.dot](../-strided-vector/dot.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/exp-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/exp-in-place.md similarity index 71% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/exp-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/exp-in-place.md index 1b6ef72..e3f3085 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/exp-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/exp-in-place.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [expInPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [expInPlace](.) # expInPlace -`fun expInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L83) +`fun expInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L83) Overrides [StridedVector.expInPlace](../-strided-vector/exp-in-place.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/expm1-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/expm1-in-place.md similarity index 72% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/expm1-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/expm1-in-place.md index db73c18..d05d9ce 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/expm1-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/expm1-in-place.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [expm1InPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [expm1InPlace](.) # expm1InPlace -`fun expm1InPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L87) +`fun expm1InPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L87) Overrides [StridedVector.expm1InPlace](../-strided-vector/expm1-in-place.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/index.md similarity index 97% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/index.md index 717bd31..fdfd5aa 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](.) # LargeDenseVector -`class LargeDenseVector : `[`DenseVector`](../-dense-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L59) +`class LargeDenseVector : `[`DenseVector`](../-dense-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L59) A contiguous vector of size at least `[DenseVector.DENSE_SPLIT_SIZE] + 1`. @@ -55,7 +55,7 @@ Sergei Lebedev | Name | Summary | |---|---| -| [argMax](../arg-max.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argMax(): Int`
Returns the index of the maxmimum element. | +| [argMax](../arg-max.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argMax(): Int`
Returns the index of the maximum element. | | [argMin](../arg-min.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argMin(): Int`
Returns the index of the minimum element. | | [argSort](../arg-sort.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argSort(reverse: Boolean = false): IntArray`
Returns a permutation of indices which makes the vector sorted. | | [partition](../partition.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.partition(p: Int): Unit`
Partitions the vector. | diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-add-exp.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-add-exp.md similarity index 72% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-add-exp.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-add-exp.md index 1153754..fcda603 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-add-exp.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-add-exp.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [logAddExp](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [logAddExp](.) # logAddExp -`fun logAddExp(other: `[`StridedVector`](../-strided-vector/index.md)`, dst: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L105) +`fun logAddExp(other: `[`StridedVector`](../-strided-vector/index.md)`, dst: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L105) Overrides [StridedVector.logAddExp](../-strided-vector/log-add-exp.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-in-place.md similarity index 71% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-in-place.md index e2cb131..ee4f418 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-in-place.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [logInPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [logInPlace](.) # logInPlace -`fun logInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L91) +`fun logInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L91) Overrides [StridedVector.logInPlace](../-strided-vector/log-in-place.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-rescale.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-rescale.md similarity index 73% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-rescale.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-rescale.md index a49cb86..5214ee6 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-rescale.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-rescale.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [logRescale](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [logRescale](.) # logRescale -`fun logRescale(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L99) +`fun logRescale(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L99) Overrides [StridedVector.logRescale](../-strided-vector/log-rescale.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-sum-exp.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-sum-exp.md similarity index 70% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-sum-exp.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-sum-exp.md index 795a0cd..993fffc 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log-sum-exp.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log-sum-exp.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [logSumExp](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [logSumExp](.) # logSumExp -`fun logSumExp(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L103) +`fun logSumExp(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L103) Overrides [StridedVector.logSumExp](../-strided-vector/log-sum-exp.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log1p-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log1p-in-place.md similarity index 72% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log1p-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log1p-in-place.md index ccaddbb..031e5f8 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/log1p-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/log1p-in-place.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [log1pInPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [log1pInPlace](.) # log1pInPlace -`fun log1pInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L95) +`fun log1pInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L95) Overrides [StridedVector.log1pInPlace](../-strided-vector/log1p-in-place.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/max.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/max.md similarity index 66% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/max.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/max.md index 927ac6b..4221c38 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/max.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/max.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [max](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [max](.) # max -`fun max(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L72) +`fun max(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L72) Overrides [StridedVector.max](../-strided-vector/max.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/mean.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/mean.md similarity index 67% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/mean.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/mean.md index 13cc4bb..0cae727 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/mean.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/mean.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [mean](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [mean](.) # mean -`fun mean(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L62) +`fun mean(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L62) Overrides [StridedVector.mean](../-strided-vector/mean.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/min.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/min.md similarity index 66% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/min.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/min.md index 12d6588..db862cd 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/min.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/min.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [min](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [min](.) # min -`fun min(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L70) +`fun min(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L70) Overrides [StridedVector.min](../-strided-vector/min.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/minus-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/minus-assign.md similarity index 71% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/minus-assign.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/minus-assign.md index 804e19d..18f17c8 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/minus-assign.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/minus-assign.md @@ -1,13 +1,13 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [minusAssign](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [minusAssign](.) # minusAssign -`fun minusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L138) +`fun minusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L138) Overrides [StridedVector.minusAssign](../-strided-vector/minus-assign.md) -`fun minusAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L142) +`fun minusAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L142) Overrides [StridedVector.minusAssign](../-strided-vector/minus-assign.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/plus-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/plus-assign.md similarity index 70% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/plus-assign.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/plus-assign.md index 977cc28..e8126a8 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/plus-assign.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/plus-assign.md @@ -1,13 +1,13 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [plusAssign](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [plusAssign](.) # plusAssign -`fun plusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L123) +`fun plusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L123) Overrides [StridedVector.plusAssign](../-strided-vector/plus-assign.md) -`fun plusAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L127) +`fun plusAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L127) Overrides [StridedVector.plusAssign](../-strided-vector/plus-assign.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/sd.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/sd.md similarity index 69% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/sd.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/sd.md index e8d6344..ff832ce 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/sd.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/sd.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [sd](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [sd](.) # sd -`fun sd(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L64) +`fun sd(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L64) Overrides [StridedVector.sd](../-strided-vector/sd.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/sum.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/sum.md similarity index 68% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/sum.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/sum.md index f728148..f784409 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/sum.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/sum.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [sum](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [sum](.) # sum -`fun sum(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L66) +`fun sum(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L66) Overrides [StridedVector.sum](../-strided-vector/sum.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/times-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/times-assign.md similarity index 71% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/times-assign.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/times-assign.md index 4e63c4e..4668075 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/times-assign.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/times-assign.md @@ -1,13 +1,13 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [timesAssign](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [timesAssign](.) # timesAssign -`fun timesAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L153) +`fun timesAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L153) Overrides [StridedVector.timesAssign](../-strided-vector/times-assign.md) -`fun timesAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L157) +`fun timesAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L157) Overrides [StridedVector.timesAssign](../-strided-vector/times-assign.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/unary-minus.md b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/unary-minus.md similarity index 68% rename from docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/unary-minus.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/unary-minus.md index f5c25d2..8177cdd 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-large-dense-vector/unary-minus.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-large-dense-vector/unary-minus.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [unaryMinus](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [LargeDenseVector](index.md) / [unaryMinus](.) # unaryMinus -`fun unaryMinus(): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L117) +`fun unaryMinus(): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L117) Overrides [StridedVector.unaryMinus](../-strided-vector/unary-minus.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-small-dense-vector/-init-.md b/docs/0.3.4/org.jetbrains.bio.viktor/-small-dense-vector/-init-.md similarity index 82% rename from docs/0.3.2/org.jetbrains.bio.viktor/-small-dense-vector/-init-.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-small-dense-vector/-init-.md index 44ed510..4c9bf73 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-small-dense-vector/-init-.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-small-dense-vector/-init-.md @@ -1,4 +1,4 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [SmallDenseVector](index.md) / [<init>](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [SmallDenseVector](index.md) / [<init>](.) # <init> diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-small-dense-vector/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-small-dense-vector/index.md similarity index 96% rename from docs/0.3.2/org.jetbrains.bio.viktor/-small-dense-vector/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-small-dense-vector/index.md index 1d1987d..7d61076 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-small-dense-vector/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-small-dense-vector/index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [SmallDenseVector](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [SmallDenseVector](.) # SmallDenseVector -`class SmallDenseVector : `[`DenseVector`](../-dense-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L50) +`class SmallDenseVector : `[`DenseVector`](../-dense-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L50) A contiguous strided vector of size at most [DenseVector.DENSE_SPLIT_SIZE](../-dense-vector/-d-e-n-s-e_-s-p-l-i-t_-s-i-z-e.md). @@ -31,7 +31,7 @@ Sergei Lebedev | Name | Summary | |---|---| -| [argMax](../arg-max.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argMax(): Int`
Returns the index of the maxmimum element. | +| [argMax](../arg-max.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argMax(): Int`
Returns the index of the maximum element. | | [argMin](../arg-min.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argMin(): Int`
Returns the index of the minimum element. | | [argSort](../arg-sort.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.argSort(reverse: Boolean = false): IntArray`
Returns a permutation of indices which makes the vector sorted. | | [partition](../partition.md) | `fun `[`StridedVector`](../-strided-vector/index.md)`.partition(p: Int): Unit`
Partitions the vector. | diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/full.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/full.md similarity index 69% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/full.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/full.md index 480dd92..c9d7b43 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/full.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/full.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](index.md) / [full](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](index.md) / [full](.) # full -`@JvmStatic fun full(numRows: Int, numColumns: Int, init: Double): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L44) -`@JvmStatic fun full(numRows: Int, numColumns: Int, depth: Int, init: Double): `[`StridedMatrix3`](../-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L49) \ No newline at end of file +`@JvmStatic fun full(numRows: Int, numColumns: Int, init: Double): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L44) +`@JvmStatic fun full(numRows: Int, numColumns: Int, depth: Int, init: Double): `[`StridedMatrix3`](../-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L49) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/index.md similarity index 91% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/index.md index 6fecf2a..26930ff 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](.) # StridedMatrix -`object StridedMatrix` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L9) +`object StridedMatrix` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L9) A strided matrix stored in a flat [DoubleArray](#). diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/indexed-stochastic.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/indexed-stochastic.md similarity index 71% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/indexed-stochastic.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/indexed-stochastic.md index ea476cf..b2bafa5 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/indexed-stochastic.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/indexed-stochastic.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](index.md) / [indexedStochastic](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](index.md) / [indexedStochastic](.) # indexedStochastic -`@JvmStatic fun indexedStochastic(depth: Int, size: Int): `[`StridedMatrix3`](../-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L62) +`@JvmStatic fun indexedStochastic(depth: Int, size: Int): `[`StridedMatrix3`](../-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L62) Creates a 3-D matrix with [stochastic](stochastic.md) submatrices. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/invoke.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/invoke.md similarity index 72% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/invoke.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/invoke.md index 947ec23..6c57021 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/invoke.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/invoke.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](index.md) / [invoke](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](index.md) / [invoke](.) # invoke -`operator fun invoke(numRows: Int, numColumns: Int): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L10) -`inline operator fun invoke(numRows: Int, numColumns: Int, block: (Int, Int) -> Double): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L14) -`operator fun invoke(numRows: Int, numColumns: Int, depth: Int): `[`StridedMatrix3`](../-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L26) -`inline operator fun invoke(depth: Int, numRows: Int, numColumns: Int, block: (Int, Int, Int) -> Double): `[`StridedMatrix3`](../-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L30) \ No newline at end of file +`operator fun invoke(numRows: Int, numColumns: Int): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L10) +`inline operator fun invoke(numRows: Int, numColumns: Int, block: (Int, Int) -> Double): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L14) +`operator fun invoke(numRows: Int, numColumns: Int, depth: Int): `[`StridedMatrix3`](../-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L26) +`inline operator fun invoke(depth: Int, numRows: Int, numColumns: Int, block: (Int, Int, Int) -> Double): `[`StridedMatrix3`](../-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L30) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/stochastic.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/stochastic.md similarity index 67% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/stochastic.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/stochastic.md index 42ac71d..a9171cd 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix/stochastic.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix/stochastic.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](index.md) / [stochastic](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix](index.md) / [stochastic](.) # stochastic -`@JvmStatic fun stochastic(size: Int): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L57) +`@JvmStatic fun stochastic(size: Int): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L57) Creates a 2-D matrix with rows summing to one. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/-init-.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/-init-.md new file mode 100644 index 0000000..896b026 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/-init-.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [<init>](.) + +# <init> + +`StridedMatrix2(numRows: Int, numColumns: Int, data: DoubleArray = DoubleArray(numRows * numColumns))` \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/-t.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/-t.md new file mode 100644 index 0000000..f3b0286 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/-t.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [T](.) + +# T + +`val T: `[`StridedMatrix2`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L105) + +An alias for [transpose](transpose.md). + diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/along.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/along.md similarity index 70% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/along.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/along.md index 1a77123..20cf5ff 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/along.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/along.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [along](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [along](.) # along -`fun along(axis: Int): `[`Stream`](http://docs.oracle.com/javase/6/docs/api/java/util/stream/Stream.html)`<`[`StridedVector`](../-strided-vector/index.md)`>` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L145) +`fun along(axis: Int): `[`Stream`](http://docs.oracle.com/javase/6/docs/api/java/util/stream/Stream.html)`<`[`StridedVector`](../-strided-vector/index.md)`>` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L147) Returns a stream of row or column views of the matrix. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/check-dimensions.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/check-dimensions.md similarity index 66% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/check-dimensions.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/check-dimensions.md index 61ee964..29d8ed4 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/check-dimensions.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/check-dimensions.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [checkDimensions](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [checkDimensions](.) # checkDimensions -`fun checkDimensions(other: `[`StridedMatrix2`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L205) +`fun checkDimensions(other: `[`StridedMatrix2`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L216) Ensures a given matrix has the same dimensions as this matrix. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/column-stride.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/column-stride.md new file mode 100644 index 0000000..3cbe8b2 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/column-stride.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [columnStride](.) + +# columnStride + +`val columnStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L16) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/column-view.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/column-view.md similarity index 70% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/column-view.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/column-view.md index 37e4c0d..91a0cab 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/column-view.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/column-view.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [columnView](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [columnView](.) # columnView -`fun columnView(c: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L71) +`fun columnView(c: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L73) Returns a view of the [c](column-view.md#org.jetbrains.bio.viktor.StridedMatrix2$columnView(kotlin.Int)/c)-th column of this matrix. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/columns-number.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/columns-number.md new file mode 100644 index 0000000..99e7269 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/columns-number.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [columnsNumber](.) + +# columnsNumber + +`val columnsNumber: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L13) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/copy-to.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/copy-to.md similarity index 59% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/copy-to.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/copy-to.md index 8f7053b..4eeb91f 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/copy-to.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/copy-to.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [copyTo](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [copyTo](.) # copyTo -`fun copyTo(other: `[`StridedMatrix2`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L117) +`fun copyTo(other: `[`StridedMatrix2`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L119) Copies elements in this matrix to [other](copy-to.md#org.jetbrains.bio.viktor.StridedMatrix2$copyTo(org.jetbrains.bio.viktor.StridedMatrix2)/other) matrix. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/copy.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/copy.md similarity index 56% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/copy.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/copy.md index 11a8a9c..7b997fb 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/copy.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/copy.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [copy](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [copy](.) # copy -`fun copy(): `[`StridedMatrix2`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L110) +`fun copy(): `[`StridedMatrix2`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L112) Overrides [FlatMatrixOps.copy](../-flat-matrix-ops/copy.md) diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/data.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/data.md new file mode 100644 index 0000000..c4b62c7 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/data.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [data](.) + +# data + +`val data: DoubleArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L14) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/equals.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/equals.md new file mode 100644 index 0000000..03199a7 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/equals.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [equals](.) + +# equals + +`fun equals(other: Any?): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L187) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/flatten.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/flatten.md similarity index 74% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/flatten.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/flatten.md index 0957713..13863e7 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/flatten.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/flatten.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [flatten](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [flatten](.) # flatten -`fun flatten(): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L135) +`fun flatten(): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L137) Overrides [FlatMatrixOps.flatten](../-flat-matrix-ops/flatten.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/get.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/get.md similarity index 64% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/get.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/get.md index bf16160..f9a7352 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/get.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/get.md @@ -1,17 +1,17 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [get](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [get](.) # get -`operator fun get(r: Int, c: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L34) +`operator fun get(r: Int, c: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L36) -`operator fun get(r: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L85) +`operator fun get(r: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L87) A less-verbose alias to [rowView](row-view.md). Please do NOT abuse this shortcut by double-indexing, i.e. dont do `m[i][j]`, write `m[i, j]` instead. -`operator fun get(any: `[`_I`](../_-i.md)`, c: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L96) +`operator fun get(any: `[`_I`](../_-i.md)`, c: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L98) A less-verbose alias to [columnView](column-view.md). diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/hash-code.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/hash-code.md new file mode 100644 index 0000000..22df780 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/hash-code.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [hashCode](.) + +# hashCode + +`fun hashCode(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L207) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/index.md similarity index 94% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/index.md index d6c7fbf..8f90c4e 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](.) # StridedMatrix2 -`class StridedMatrix2 : `[`FlatMatrixOps`](../-flat-matrix-ops/index.md)`` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L13) +`class StridedMatrix2 : `[`FlatMatrixOps`](../-flat-matrix-ops/index.md)`` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L12) A specialization of [StridedMatrix](../-strided-matrix/index.md) for 2-D data. @@ -16,7 +16,7 @@ Sergei Lebedev | Name | Summary | |---|---| -| [<init>](-init-.md) | `StridedMatrix2(numRows: Int, numColumns: Int)` | +| [<init>](-init-.md) | `StridedMatrix2(numRows: Int, numColumns: Int, data: DoubleArray = DoubleArray(numRows * numColumns))` | ### Properties @@ -29,6 +29,7 @@ Sergei Lebedev | [offset](offset.md) | `val offset: Int` | | [rowStride](row-stride.md) | `val rowStride: Int` | | [rowsNumber](rows-number.md) | `val rowsNumber: Int` | +| [shape](shape.md) | `val shape: IntArray`
Returns the shape of this matrix. | ### Functions diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/offset.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/offset.md new file mode 100644 index 0000000..1063873 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/offset.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [offset](.) + +# offset + +`val offset: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L14) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/row-stride.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/row-stride.md new file mode 100644 index 0000000..3f0a90c --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/row-stride.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [rowStride](.) + +# rowStride + +`val rowStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L15) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/row-view.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/row-view.md similarity index 69% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/row-view.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/row-view.md index 61a83f6..57597ac 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix2/row-view.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/row-view.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [rowView](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [rowView](.) # rowView -`fun rowView(r: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L60) +`fun rowView(r: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L62) Returns a view of the [r](row-view.md#org.jetbrains.bio.viktor.StridedMatrix2$rowView(kotlin.Int)/r)-th row of this matrix. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/rows-number.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/rows-number.md new file mode 100644 index 0000000..4f4841b --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/rows-number.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [rowsNumber](.) + +# rowsNumber + +`val rowsNumber: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L13) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/set.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/set.md new file mode 100644 index 0000000..8e6720a --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/set.md @@ -0,0 +1,9 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [set](.) + +# set + +`operator fun set(r: Int, c: Int, value: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L46) +`operator fun set(r: Int, other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L89) +`operator fun set(r: Int, init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L91) +`operator fun set(any: `[`_I`](../_-i.md)`, c: Int, other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L100) +`operator fun set(any: `[`_I`](../_-i.md)`, c: Int, init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L102) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/shape.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/shape.md new file mode 100644 index 0000000..2b169f3 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/shape.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [shape](.) + +# shape + +`val shape: IntArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L23) + +Returns the shape of this matrix. + diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/to-array.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/to-array.md new file mode 100644 index 0000000..6bb1945 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/to-array.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [toArray](.) + +# toArray + +`fun toArray(): Array` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L153) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/to-string.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/to-string.md new file mode 100644 index 0000000..892fda9 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/to-string.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [toString](.) + +# toString + +`fun toString(): String` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L185) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/transpose.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/transpose.md new file mode 100644 index 0000000..f3513a8 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/transpose.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix2](index.md) / [transpose](.) + +# transpose + +`fun transpose(): `[`StridedMatrix2`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L108) + +Constructs matrix transpose in O(1) time. + diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/-init-.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/-init-.md new file mode 100644 index 0000000..d6ec0e0 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/-init-.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [<init>](.) + +# <init> + +`StridedMatrix3(depth: Int, numRows: Int, numColumns: Int, data: DoubleArray = DoubleArray(depth * numRows * numColumns))` \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/check-dimensions.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/check-dimensions.md similarity index 66% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/check-dimensions.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/check-dimensions.md index 8db54cf..bf0ce08 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/check-dimensions.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/check-dimensions.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [checkDimensions](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [checkDimensions](.) # checkDimensions -`fun checkDimensions(other: `[`StridedMatrix3`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L141) +`fun checkDimensions(other: `[`StridedMatrix3`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L174) Ensures a given matrix has the same dimensions as this matrix. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/column-stride.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/column-stride.md new file mode 100644 index 0000000..4bbefe2 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/column-stride.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [columnStride](.) + +# columnStride + +`val columnStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L12) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/columns-number.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/columns-number.md new file mode 100644 index 0000000..eda06ad --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/columns-number.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [columnsNumber](.) + +# columnsNumber + +`val columnsNumber: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L10) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/copy-to.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/copy-to.md new file mode 100644 index 0000000..d1c9ba0 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/copy-to.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [copyTo](.) + +# copyTo + +`fun copyTo(other: `[`StridedMatrix3`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L71) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/copy.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/copy.md similarity index 54% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/copy.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/copy.md index a545886..fc8bd50 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/copy.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/copy.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [copy](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [copy](.) # copy -`fun copy(): `[`StridedMatrix3`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L64) +`fun copy(): `[`StridedMatrix3`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L65) Overrides [FlatMatrixOps.copy](../-flat-matrix-ops/copy.md) diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/data.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/data.md new file mode 100644 index 0000000..8bc26ce --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/data.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [data](.) + +# data + +`val data: DoubleArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L11) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/depth-stride.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/depth-stride.md new file mode 100644 index 0000000..27f1030 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/depth-stride.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [depthStride](.) + +# depthStride + +`val depthStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L12) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/depth.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/depth.md new file mode 100644 index 0000000..c9e144a --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/depth.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [depth](.) + +# depth + +`val depth: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L10) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/equals.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/equals.md new file mode 100644 index 0000000..82755f6 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/equals.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [equals](.) + +# equals + +`fun equals(other: Any?): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L144) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/flatten.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/flatten.md similarity index 72% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/flatten.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/flatten.md index 3588c10..fba409c 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/flatten.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/flatten.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [flatten](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [flatten](.) # flatten -`fun flatten(): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L80) +`fun flatten(): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L81) Overrides [FlatMatrixOps.flatten](../-flat-matrix-ops/flatten.md) diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/get.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/get.md similarity index 51% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/get.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/get.md index f0b5517..88a8355 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/get.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/get.md @@ -1,7 +1,7 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [get](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [get](.) # get -`operator fun get(d: Int, r: Int, c: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L37) -`operator fun get(d: Int): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L85) -`operator fun get(d: Int, r: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L101) \ No newline at end of file +`operator fun get(d: Int, r: Int, c: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L38) +`operator fun get(d: Int): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L86) +`operator fun get(d: Int, r: Int): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L102) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/hash-code.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/hash-code.md new file mode 100644 index 0000000..7ef9fd2 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/hash-code.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [hashCode](.) + +# hashCode + +`fun hashCode(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L165) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/index.md similarity index 93% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/index.md index 95cc2d5..1b68b15 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](.) # StridedMatrix3 -`class StridedMatrix3 : `[`FlatMatrixOps`](../-flat-matrix-ops/index.md)`` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L11) +`class StridedMatrix3 : `[`FlatMatrixOps`](../-flat-matrix-ops/index.md)`` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L9) A specialization of [StridedMatrix](../-strided-matrix/index.md) for 3-D data. @@ -16,7 +16,7 @@ Sergei Lebedev | Name | Summary | |---|---| -| [<init>](-init-.md) | `StridedMatrix3(depth: Int, numRows: Int, numColumns: Int)` | +| [<init>](-init-.md) | `StridedMatrix3(depth: Int, numRows: Int, numColumns: Int, data: DoubleArray = DoubleArray(depth * numRows * numColumns))` | ### Properties @@ -30,6 +30,7 @@ Sergei Lebedev | [offset](offset.md) | `val offset: Int` | | [rowStride](row-stride.md) | `val rowStride: Int` | | [rowsNumber](rows-number.md) | `val rowsNumber: Int` | +| [shape](shape.md) | `val shape: IntArray`
Returns the shape of this matrix. | ### Functions diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/offset.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/offset.md new file mode 100644 index 0000000..159e753 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/offset.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [offset](.) + +# offset + +`val offset: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L11) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/row-stride.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/row-stride.md new file mode 100644 index 0000000..fd5a630 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/row-stride.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [rowStride](.) + +# rowStride + +`val rowStride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L12) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/rows-number.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/rows-number.md new file mode 100644 index 0000000..f892336 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/rows-number.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [rowsNumber](.) + +# rowsNumber + +`val rowsNumber: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L10) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/set.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/set.md new file mode 100644 index 0000000..4083091 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/set.md @@ -0,0 +1,9 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [set](.) + +# set + +`operator fun set(d: Int, r: Int, c: Int, value: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L48) +`operator fun set(d: Int, other: `[`StridedMatrix2`](../-strided-matrix2/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L88) +`operator fun set(d: Int, other: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L90) +`operator fun set(d: Int, r: Int, other: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L104) +`operator fun set(d: Int, r: Int, other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L106) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/shape.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/shape.md new file mode 100644 index 0000000..f030629 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/shape.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [shape](.) + +# shape + +`val shape: IntArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L23) + +Returns the shape of this matrix. + diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/to-array.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/to-array.md new file mode 100644 index 0000000..cff9197 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/to-array.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [toArray](.) + +# toArray + +`fun toArray(): Array>` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L108) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/to-string.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/to-string.md new file mode 100644 index 0000000..e06ba05 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/to-string.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [toString](.) + +# toString + +`fun toString(): String` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L142) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/view.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/view.md similarity index 57% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/view.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/view.md index 4cb56c2..0d2e4ec 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-matrix3/view.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/view.md @@ -1,5 +1,5 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [view](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedMatrix3](index.md) / [view](.) # view -`fun view(d: Int): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L91) \ No newline at end of file +`fun view(d: Int): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L92) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/-t.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/-t.md new file mode 100644 index 0000000..9b47c3f --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/-t.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [T](.) + +# T + +`val T: `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L128) + +An alias for [transpose](transpose.md). + diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/append.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/append.md similarity index 62% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/append.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/append.md index 0168eee..d68869f 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/append.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/append.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [append](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [append](.) # append -`fun append(other: `[`StridedVector`](index.md)`): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L136) +`fun append(other: `[`StridedVector`](index.md)`): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L143) Appends this vector to another vector. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/concatenate.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/concatenate.md similarity index 69% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/concatenate.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/concatenate.md index 99ef1ed..3739d19 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/concatenate.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/concatenate.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [concatenate](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [concatenate](.) # concatenate -`@JvmStatic fun concatenate(first: `[`StridedVector`](index.md)`, vararg rest: `[`StridedVector`](index.md)`): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L553) +`@JvmStatic fun concatenate(first: `[`StridedVector`](index.md)`, vararg rest: `[`StridedVector`](index.md)`): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L560) Joins a sequence of vectors into a single vector. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/contains.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/contains.md new file mode 100644 index 0000000..277d992 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/contains.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [contains](.) + +# contains + +`operator fun contains(other: Double): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L103) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/copy-to.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/copy-to.md similarity index 61% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/copy-to.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/copy-to.md index aa242cb..aa5992b 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/copy-to.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/copy-to.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [copyTo](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [copyTo](.) # copyTo -`open fun copyTo(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L150) +`open fun copyTo(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L157) Copies the elements in this vector to [other](copy-to.md#org.jetbrains.bio.viktor.StridedVector$copyTo(org.jetbrains.bio.viktor.StridedVector)/other). diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/copy.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/copy.md new file mode 100644 index 0000000..4070876 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/copy.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [copy](.) + +# copy + +`fun copy(): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L146) + +Returns a copy of the elements in this vector. + diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/cum-sum.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/cum-sum.md similarity index 55% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/cum-sum.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/cum-sum.md index f5fc63e..1e5bbc0 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/cum-sum.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/cum-sum.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [cumSum](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [cumSum](.) # cumSum -`open fun cumSum(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L211) +`open fun cumSum(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L218) Computes cumulative sum of the elements. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/data.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/data.md new file mode 100644 index 0000000..194a1d7 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/data.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [data](.) + +# data + +`val data: DoubleArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L46) + +Raw data array. + diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/div-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/div-assign.md new file mode 100644 index 0000000..785b89f --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/div-assign.md @@ -0,0 +1,6 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [divAssign](.) + +# divAssign + +`open operator fun divAssign(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L409) +`open operator fun divAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L418) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/div.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/div.md new file mode 100644 index 0000000..e71f815 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/div.md @@ -0,0 +1,6 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [div](.) + +# div + +`operator fun div(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L407) +`operator fun div(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L416) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/dot.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/dot.md similarity index 52% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/dot.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/dot.md index 17b6cc6..8f164ce 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/dot.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/dot.md @@ -1,14 +1,14 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [dot](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [dot](.) # dot -`infix fun dot(other: ShortArray): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L160) -`infix fun dot(other: IntArray): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L165) -`infix fun dot(other: DoubleArray): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L170) +`infix fun dot(other: ShortArray): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L167) +`infix fun dot(other: IntArray): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L172) +`infix fun dot(other: DoubleArray): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L177) Computes a dot product of this vector with an array. -`open infix fun dot(other: `[`StridedVector`](index.md)`): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L177) +`open infix fun dot(other: `[`StridedVector`](index.md)`): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L184) Computes a dot product between the two vectors. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/equals.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/equals.md new file mode 100644 index 0000000..db27db9 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/equals.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [equals](.) + +# equals + +`open fun equals(other: Any?): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L484) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/exp-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/exp-in-place.md similarity index 56% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/exp-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/exp-in-place.md index c940d97..fcafd77 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/exp-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/exp-in-place.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [expInPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [expInPlace](.) # expInPlace -`open fun expInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L240) +`open fun expInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L247) Computes the exponent of each element of this vector. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/exp.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/exp.md new file mode 100644 index 0000000..6a1aef1 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/exp.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [exp](.) + +# exp + +`fun exp(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L240) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/expm1-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/expm1-in-place.md similarity index 58% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/expm1-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/expm1-in-place.md index 82b40c0..6478d61 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/expm1-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/expm1-in-place.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [expm1InPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [expm1InPlace](.) # expm1InPlace -`open fun expm1InPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L255) +`open fun expm1InPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L262) Computes exp(x) - 1 for each element of this vector. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/expm1.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/expm1.md new file mode 100644 index 0000000..39a88d3 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/expm1.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [expm1](.) + +# expm1 + +`fun expm1(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L253) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/fill.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/fill.md new file mode 100644 index 0000000..0fed5a3 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/fill.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [fill](.) + +# fill + +`open fun fill(init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L113) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/full.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/full.md similarity index 69% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/full.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/full.md index fddd6e0..ace6be6 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/full.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/full.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [full](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [full](.) # full -`@JvmStatic fun full(size: Int, init: Double): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L542) +`@JvmStatic fun full(size: Int, init: Double): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L549) Creates an array filled with a given [init](full.md#org.jetbrains.bio.viktor.StridedVector.Companion$full(kotlin.Int, kotlin.Double)/init) element. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/get.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/get.md new file mode 100644 index 0000000..3ee2452 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/get.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [get](.) + +# get + +`operator fun get(pos: Int): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L59) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/hash-code.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/hash-code.md new file mode 100644 index 0000000..33e3e4b --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/hash-code.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [hashCode](.) + +# hashCode + +`open fun hashCode(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L504) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/index.md similarity index 95% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/index.md index 12ce30b..08f2ddb 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/index.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](.) # StridedVector -`open class StridedVector` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L40) +`open class StridedVector` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L44) A strided vector stored in a [DoubleArray](#). @@ -13,14 +13,18 @@ The term *strided* means that unlike regular [DoubleArray](#) the elements of a vector can be at arbitrary index intervals (strides) from each other. For example -data = [0,1,2,3,4,5](#) +``` +data = [0, 1, 2, 3, 4, 5] offset = 1 size = 2 stride = 3 +``` corresponds to a vector with elements -[1,4](#) +``` +[1, 4] +``` Vectors with `stride` equal to 1 are called called *dense*. The distinction is important because some of the operations can be @@ -40,6 +44,7 @@ Sergei Lebedev | [data](data.md) | `val data: DoubleArray`
Raw data array. | | [indices](indices.md) | `val indices: IntRange` | | [offset](offset.md) | `val offset: Int`
Offset of the first vector element in the raw data array. | +| [shape](shape.md) | `val shape: IntArray`
Returns the shape of this vector. | | [size](size.md) | `val size: Int`
Number of elements in the raw data array to use. | | [stride](stride.md) | `val stride: Int`
Indexing step. | @@ -89,7 +94,7 @@ Sergei Lebedev | [times](times.md) | `operator fun times(other: StridedVector): `
`operator fun times(update: Double): ` | | [timesAssign](times-assign.md) | `open operator fun timesAssign(other: StridedVector): Unit`
`open operator fun timesAssign(update: Double): Unit` | | [toArray](to-array.md) | `open fun toArray(): DoubleArray` | -| [toString](to-string.md) | `fun toString(maxDisplay: Int, format: `[`DecimalFormat`](http://docs.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html)` = DecimalFormat("#.####")): String`
`open fun toString(): String` | +| [toString](to-string.md) | `open fun toString(): String` | | [transpose](transpose.md) | `fun transpose(): `[`StridedMatrix2`](../-strided-matrix2/index.md)
Constructs a column-vector view of this vector in O(1) time. | | [unaryMinus](unary-minus.md) | `open operator fun unaryMinus(): StridedVector` | | [unaryPlus](unary-plus.md) | `operator fun unaryPlus(): StridedVector` | @@ -109,7 +114,7 @@ Sergei Lebedev | Name | Summary | |---|---| -| [argMax](../arg-max.md) | `fun StridedVector.argMax(): Int`
Returns the index of the maxmimum element. | +| [argMax](../arg-max.md) | `fun StridedVector.argMax(): Int`
Returns the index of the maximum element. | | [argMin](../arg-min.md) | `fun StridedVector.argMin(): Int`
Returns the index of the minimum element. | | [argSort](../arg-sort.md) | `fun StridedVector.argSort(reverse: Boolean = false): IntArray`
Returns a permutation of indices which makes the vector sorted. | | [partition](../partition.md) | `fun StridedVector.partition(p: Int): Unit`
Partitions the vector. | diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/indices.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/indices.md new file mode 100644 index 0000000..8278fd4 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/indices.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [indices](.) + +# indices + +`val indices: IntRange` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L54) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/invoke.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/invoke.md similarity index 50% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/invoke.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/invoke.md index 5cc2931..b8c7ab6 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/invoke.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/invoke.md @@ -1,9 +1,9 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [invoke](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [invoke](.) # invoke -`operator fun invoke(size: Int): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L516) +`operator fun invoke(size: Int): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L523) Create a zero-filled vector of a given `size`. -`inline operator fun invoke(size: Int, block: (Int) -> Double): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L518) \ No newline at end of file +`inline operator fun invoke(size: Int, block: (Int) -> Double): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L525) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/is-empty.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/is-empty.md new file mode 100644 index 0000000..d2f9af3 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/is-empty.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [isEmpty](.) + +# isEmpty + +`fun isEmpty(): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L424) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/is-not-empty.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/is-not-empty.md new file mode 100644 index 0000000..f95954c --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/is-not-empty.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [isNotEmpty](.) + +# isNotEmpty + +`fun isNotEmpty(): Boolean` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L426) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/iterator.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/iterator.md similarity index 50% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/iterator.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/iterator.md index f9ebb63..8a46b51 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/iterator.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/iterator.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [iterator](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [iterator](.) # iterator -`operator fun iterator(): DoubleIterator` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L424) +`operator fun iterator(): DoubleIterator` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L431) Creates an iterator over the elements of the array. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-add-exp.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-add-exp.md similarity index 56% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-add-exp.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-add-exp.md index b532981..f0910cc 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-add-exp.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-add-exp.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [logAddExp](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [logAddExp](.) # logAddExp -`infix fun logAddExp(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L326) -`open fun logAddExp(other: `[`StridedVector`](index.md)`, dst: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L328) \ No newline at end of file +`infix fun logAddExp(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L333) +`open fun logAddExp(other: `[`StridedVector`](index.md)`, dst: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L335) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-in-place.md similarity index 57% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-in-place.md index f2bf3d6..6a9e368 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-in-place.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [logInPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [logInPlace](.) # logInPlace -`open fun logInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L268) +`open fun logInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L275) Computes the natural log of each element of this vector. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-rescale.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-rescale.md similarity index 61% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-rescale.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-rescale.md index 570cee3..e43257b 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-rescale.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-rescale.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [logRescale](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [logRescale](.) # logRescale -`open fun logRescale(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L305) +`open fun logRescale(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L312) Rescales the element so that the exponent of the sum is 1.0. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-sum-exp.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-sum-exp.md similarity index 56% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-sum-exp.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-sum-exp.md index 15e9bbd..c3d9975 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log-sum-exp.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log-sum-exp.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [logSumExp](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [logSumExp](.) # logSumExp -`open fun logSumExp(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L316) +`open fun logSumExp(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L323) Computes diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log.md new file mode 100644 index 0000000..b4bbc74 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [log](.) + +# log + +`fun log(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L268) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log1p-in-place.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log1p-in-place.md similarity index 58% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log1p-in-place.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log1p-in-place.md index 8498b74..adbeb7a 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/log1p-in-place.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log1p-in-place.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [log1pInPlace](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [log1pInPlace](.) # log1pInPlace -`open fun log1pInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L283) +`open fun log1pInPlace(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L290) Computes log(1 + x) for each element of this vector. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log1p.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log1p.md new file mode 100644 index 0000000..e293e3c --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/log1p.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [log1p](.) + +# log1p + +`fun log1p(): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L281) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/max.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/max.md similarity index 52% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/max.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/max.md index 4ee3cf7..b036ab9 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/max.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/max.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [max](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [max](.) # max -`open fun max(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L231) +`open fun max(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L238) Returns the maximum element. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/mean.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/mean.md similarity index 53% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/mean.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/mean.md index 539a061..212892e 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/mean.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/mean.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [mean](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [mean](.) # mean -`open fun mean(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L184) +`open fun mean(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L191) Computes the mean of the elements. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/min.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/min.md similarity index 52% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/min.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/min.md index e95d51c..4a4e415 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/min.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/min.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [min](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [min](.) # min -`open fun min(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L224) +`open fun min(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L231) Returns the minimum element. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/minus-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/minus-assign.md new file mode 100644 index 0000000..30af18f --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/minus-assign.md @@ -0,0 +1,6 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [minusAssign](.) + +# minusAssign + +`open operator fun minusAssign(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L375) +`open operator fun minusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L384) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/minus.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/minus.md new file mode 100644 index 0000000..1467b47 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/minus.md @@ -0,0 +1,6 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [minus](.) + +# minus + +`operator fun minus(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L373) +`operator fun minus(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L382) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/of.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/of.md similarity index 58% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/of.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/of.md index 22edbfd..9220514 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/of.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/of.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [of](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [of](.) # of -`@JvmStatic fun of(first: Double, vararg rest: Double): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L529) +`@JvmStatic fun of(first: Double, vararg rest: Double): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L536) Creates a vector with given elements. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/offset.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/offset.md similarity index 54% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/offset.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/offset.md index 7a35767..738d48f 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/offset.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/offset.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [offset](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [offset](.) # offset -`val offset: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L44) +`val offset: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L48) Offset of the first vector element in the raw data array. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/plus-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/plus-assign.md new file mode 100644 index 0000000..885e23b --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/plus-assign.md @@ -0,0 +1,6 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [plusAssign](.) + +# plusAssign + +`open operator fun plusAssign(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L358) +`open operator fun plusAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L367) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/plus.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/plus.md new file mode 100644 index 0000000..e7ebf93 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/plus.md @@ -0,0 +1,6 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [plus](.) + +# plus + +`operator fun plus(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L356) +`operator fun plus(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L365) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/rescale.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/rescale.md similarity index 57% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/rescale.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/rescale.md index 4c90994..37b6dbe 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/rescale.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/rescale.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [rescale](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [rescale](.) # rescale -`fun rescale(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L294) +`fun rescale(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L301) Rescales the elements so that the sum is 1.0. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/reverse.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/reverse.md new file mode 100644 index 0000000..6f51383 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/reverse.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [reverse](.) + +# reverse + +`fun reverse(): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L119) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/sd.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/sd.md similarity index 58% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/sd.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/sd.md index 89ab34b..97f5f6e 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/sd.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/sd.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [sd](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [sd](.) # sd -`open fun sd(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L193) +`open fun sd(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L200) Computes the unbiased standard deviation of the elements. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/set.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/set.md similarity index 52% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/set.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/set.md index 1e31587..60d0934 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/set.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/set.md @@ -1,7 +1,7 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [set](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [set](.) # set -`operator fun set(pos: Int, value: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L65) -`operator fun set(any: `[`_I`](../_-i.md)`, init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L92) -`operator fun set(any: `[`_I`](../_-i.md)`, other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L94) \ No newline at end of file +`operator fun set(pos: Int, value: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L72) +`operator fun set(any: `[`_I`](../_-i.md)`, init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L99) +`operator fun set(any: `[`_I`](../_-i.md)`, other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L101) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/shape.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/shape.md new file mode 100644 index 0000000..b6db40f --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/shape.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [shape](.) + +# shape + +`val shape: IntArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L57) + +Returns the shape of this vector. + diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/size.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/size.md similarity index 53% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/size.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/size.md index 26ead61..f3b451e 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/size.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/size.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [size](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [size](.) # size -`val size: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L46) +`val size: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L50) Number of elements in the raw data array to use. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/slice.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/slice.md similarity index 72% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/slice.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/slice.md index 553994a..771f26b 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/slice.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/slice.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [slice](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [slice](.) # slice -`fun slice(from: Int, to: Int = size): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L84) +`fun slice(from: Int, to: Int = size): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L91) Creates a sliced view of this vector in O(1) time. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/stochastic.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/stochastic.md similarity index 64% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/stochastic.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/stochastic.md index 7ad2ed0..386fda2 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/stochastic.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/stochastic.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [stochastic](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [stochastic](.) # stochastic -`@JvmStatic fun stochastic(size: Int): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L537) +`@JvmStatic fun stochastic(size: Int): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L544) Creates an array with elements summing to one. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/stride.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/stride.md new file mode 100644 index 0000000..fb13f75 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/stride.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [stride](.) + +# stride + +`val stride: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L52) + +Indexing step. + diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/sum.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/sum.md similarity index 56% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/sum.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/sum.md index 32c7e20..b3ef019 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/sum.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/sum.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [sum](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [sum](.) # sum -`open fun sum(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L204) +`open fun sum(): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L211) Returns the sum of the elements using balanced summation. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/times-assign.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/times-assign.md new file mode 100644 index 0000000..759c2d9 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/times-assign.md @@ -0,0 +1,6 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [timesAssign](.) + +# timesAssign + +`open operator fun timesAssign(other: `[`StridedVector`](index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L392) +`open operator fun timesAssign(update: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L401) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/times.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/times.md new file mode 100644 index 0000000..81cebf3 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/times.md @@ -0,0 +1,6 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [times](.) + +# times + +`operator fun times(other: `[`StridedVector`](index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L390) +`operator fun times(update: Double): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L399) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/to-array.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/to-array.md new file mode 100644 index 0000000..80ad7c3 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/to-array.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [toArray](.) + +# toArray + +`open fun toArray(): DoubleArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L428) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/to-string.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/to-string.md new file mode 100644 index 0000000..d75ec7c --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/to-string.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [toString](.) + +# toString + +`open fun toString(): String` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L482) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/transpose.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/transpose.md similarity index 73% rename from docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/transpose.md rename to docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/transpose.md index a0d4ad0..4029a6b 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/-strided-vector/transpose.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/transpose.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [transpose](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [transpose](.) # transpose -`fun transpose(): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L129) +`fun transpose(): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L136) Constructs a column-vector view of this vector in O(1) time. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/unary-minus.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/unary-minus.md new file mode 100644 index 0000000..05c0b3e --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/unary-minus.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [unaryMinus](.) + +# unaryMinus + +`open operator fun unaryMinus(): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L345) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/unary-plus.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/unary-plus.md new file mode 100644 index 0000000..052baed --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/unary-plus.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [unaryPlus](.) + +# unaryPlus + +`operator fun unaryPlus(): `[`StridedVector`](index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L343) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/unsafe-index.md b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/unsafe-index.md new file mode 100644 index 0000000..b5d2885 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/-strided-vector/unsafe-index.md @@ -0,0 +1,5 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [StridedVector](index.md) / [unsafeIndex](.) + +# unsafeIndex + +`protected open fun unsafeIndex(pos: Int): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L67) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/_-i.md b/docs/0.3.4/org.jetbrains.bio.viktor/_-i.md similarity index 65% rename from docs/0.3.2/org.jetbrains.bio.viktor/_-i.md rename to docs/0.3.4/org.jetbrains.bio.viktor/_-i.md index c5ec7cf..46c5db0 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/_-i.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/_-i.md @@ -1,8 +1,8 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [_I](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [_I](.) # _I -`object _I` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMagic.kt#L9) +`object _I` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMagic.kt#L9) A special object used to denote all indices. diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/arg-max.md b/docs/0.3.4/org.jetbrains.bio.viktor/arg-max.md new file mode 100644 index 0000000..df3cec0 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/arg-max.md @@ -0,0 +1,8 @@ +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [argMax](.) + +# argMax + +`fun `[`StridedVector`](-strided-vector/index.md)`.argMax(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt#L42) + +Returns the index of the maximum element. + diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/arg-min.md b/docs/0.3.4/org.jetbrains.bio.viktor/arg-min.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/arg-min.md rename to docs/0.3.4/org.jetbrains.bio.viktor/arg-min.md index 9bcfc60..8680921 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/arg-min.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/arg-min.md @@ -1,8 +1,8 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [argMin](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [argMin](.) # argMin -`fun `[`StridedVector`](-strided-vector/index.md)`.argMin(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt#L26) +`fun `[`StridedVector`](-strided-vector/index.md)`.argMin(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt#L26) Returns the index of the minimum element. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/arg-sort.md b/docs/0.3.4/org.jetbrains.bio.viktor/arg-sort.md similarity index 60% rename from docs/0.3.2/org.jetbrains.bio.viktor/arg-sort.md rename to docs/0.3.4/org.jetbrains.bio.viktor/arg-sort.md index d54b4e9..26c2e8f 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/arg-sort.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/arg-sort.md @@ -1,11 +1,11 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [argSort](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [argSort](.) # argSort -`fun `[`StridedVector`](-strided-vector/index.md)`.argSort(reverse: Boolean = false): IntArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt#L20) +`fun `[`StridedVector`](-strided-vector/index.md)`.argSort(reverse: Boolean = false): IntArray` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt#L20) Returns a permutation of indices which makes the vector sorted. ### Parameters -`reverse` - see [.sort](#) for details. \ No newline at end of file +`reverse` - see [sort](sort.md) for details. \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/index.md similarity index 91% rename from docs/0.3.2/org.jetbrains.bio.viktor/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/index.md index a414ac2..e7b1cda 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/index.md @@ -1,4 +1,4 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](.) ## Package org.jetbrains.bio.viktor @@ -10,8 +10,6 @@ | [FlatMatrixOps](-flat-matrix-ops/index.md) | `interface FlatMatrixOps>`
A common interface for whole-matrix operations. | | [KahanSum](-kahan-sum/index.md) | `class KahanSum`
Kahan-Babuska summation. | | [LargeDenseVector](-large-dense-vector/index.md) | `class LargeDenseVector : `[`DenseVector`](-dense-vector/index.md)
A contiguous vector of size at least `[DenseVector.DENSE_SPLIT_SIZE] + 1`. | -| [NativeSpeedups](-native-speedups/index.md) | `object NativeSpeedups` | -| [ResourceLibrary](-resource-library/index.md) | `class ResourceLibrary` | | [SmallDenseVector](-small-dense-vector/index.md) | `class SmallDenseVector : `[`DenseVector`](-dense-vector/index.md)
A contiguous strided vector of size at most [DenseVector.DENSE_SPLIT_SIZE](-dense-vector/-d-e-n-s-e_-s-p-l-i-t_-s-i-z-e.md). | | [StridedMatrix](-strided-matrix/index.md) | `object StridedMatrix`
A strided matrix stored in a flat [DoubleArray](#). | | [StridedMatrix2](-strided-matrix2/index.md) | `class StridedMatrix2 : `[`FlatMatrixOps`](-flat-matrix-ops/index.md)`<`[`StridedMatrix2`](-strided-matrix2/index.md)`>`
A specialization of [StridedMatrix](-strided-matrix/index.md) for 2-D data. | @@ -25,12 +23,15 @@ |---|---| | [kotlin.Double](kotlin.-double/index.md) | | | [kotlin.DoubleArray](kotlin.-double-array/index.md) | | +| [org.jetbrains.bio.npy.NpyArray](org.jetbrains.bio.npy.-npy-array/index.md) | | +| [org.jetbrains.bio.npy.NpyFile](org.jetbrains.bio.npy.-npy-file/index.md) | | +| [org.jetbrains.bio.npy.NpzFile.Writer](org.jetbrains.bio.npy.-npz-file.-writer/index.md) | | ### Functions | Name | Summary | |---|---| -| [argMax](arg-max.md) | `fun `[`StridedVector`](-strided-vector/index.md)`.argMax(): Int`
Returns the index of the maxmimum element. | +| [argMax](arg-max.md) | `fun `[`StridedVector`](-strided-vector/index.md)`.argMax(): Int`
Returns the index of the maximum element. | | [argMin](arg-min.md) | `fun `[`StridedVector`](-strided-vector/index.md)`.argMin(): Int`
Returns the index of the minimum element. | | [argSort](arg-sort.md) | `fun `[`StridedVector`](-strided-vector/index.md)`.argSort(reverse: Boolean = false): IntArray`
Returns a permutation of indices which makes the vector sorted. | | [partition](partition.md) | `fun `[`StridedVector`](-strided-vector/index.md)`.partition(p: Int): Unit`
Partitions the vector. | diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double-array/as-strided.md b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double-array/as-strided.md similarity index 70% rename from docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double-array/as-strided.md rename to docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double-array/as-strided.md index 79aedfd..7dbfa5a 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double-array/as-strided.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double-array/as-strided.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.DoubleArray](index.md) / [asStrided](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.DoubleArray](index.md) / [asStrided](.) # asStrided -`fun DoubleArray.asStrided(offset: Int = 0, size: Int = this.size): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L10) +`fun DoubleArray.asStrided(offset: Int = 0, size: Int = this.size): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt#L10) Wraps a given array of elements. The array will not be copied. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double-array/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double-array/index.md similarity index 82% rename from docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double-array/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double-array/index.md index 29860e3..960cf21 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double-array/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double-array/index.md @@ -1,4 +1,4 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.DoubleArray](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.DoubleArray](.) ### Extensions for kotlin.DoubleArray diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/div.md b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/div.md similarity index 68% rename from docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/div.md rename to docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/div.md index 3b73b8a..5c9a56a 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/div.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/div.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [div](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [div](.) # div -`operator fun Double.div(other: `[`StridedVector`](../-strided-vector/index.md)`): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L59) -`operator fun > Double.div(other: T): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L65) \ No newline at end of file +`operator fun Double.div(other: `[`StridedVector`](../-strided-vector/index.md)`): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L59) +`operator fun > Double.div(other: T): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L65) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/index.md similarity index 94% rename from docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/index.md rename to docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/index.md index 0121e30..7cae82e 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/index.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/index.md @@ -1,4 +1,4 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](.) ### Extensions for kotlin.Double diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/log-add-exp.md b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/log-add-exp.md similarity index 70% rename from docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/log-add-exp.md rename to docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/log-add-exp.md index 063e264..8bc9677 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/log-add-exp.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/log-add-exp.md @@ -1,8 +1,8 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [logAddExp](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [logAddExp](.) # logAddExp -`infix fun Double.logAddExp(b: Double): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L12) +`infix fun Double.logAddExp(b: Double): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/MoreMath.kt#L12) Evaluates log(exp(a) + exp(b)) using the following trick diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/minus.md b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/minus.md similarity index 68% rename from docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/minus.md rename to docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/minus.md index d9b71dc..cf65743 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/minus.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/minus.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [minus](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [minus](.) # minus -`operator fun Double.minus(other: `[`StridedVector`](../-strided-vector/index.md)`): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L28) -`operator fun > Double.minus(other: T): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L34) \ No newline at end of file +`operator fun Double.minus(other: `[`StridedVector`](../-strided-vector/index.md)`): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L28) +`operator fun > Double.minus(other: T): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L34) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/plus.md b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/plus.md similarity index 68% rename from docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/plus.md rename to docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/plus.md index 587bfec..5b2eba3 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/plus.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/plus.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [plus](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [plus](.) # plus -`inline operator fun Double.plus(other: `[`StridedVector`](../-strided-vector/index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L40) -`inline operator fun > Double.plus(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L42) \ No newline at end of file +`inline operator fun Double.plus(other: `[`StridedVector`](../-strided-vector/index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L40) +`inline operator fun > Double.plus(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L42) \ No newline at end of file diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/times.md b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/times.md similarity index 68% rename from docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/times.md rename to docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/times.md index f622ca1..dbd76aa 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/kotlin.-double/times.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/kotlin.-double/times.md @@ -1,6 +1,6 @@ -[0.3.2](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [times](.) +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [kotlin.Double](index.md) / [times](.) # times -`inline operator fun Double.times(other: `[`StridedVector`](../-strided-vector/index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L44) -`inline operator fun > Double.times(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L46) \ No newline at end of file +`inline operator fun Double.times(other: `[`StridedVector`](../-strided-vector/index.md)`): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L44) +`inline operator fun > Double.times(other: T): ` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DoubleExtensions.kt#L46) \ No newline at end of file diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/as-strided-matrix2.md b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/as-strided-matrix2.md new file mode 100644 index 0000000..c6a41c7 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/as-strided-matrix2.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [org.jetbrains.bio.npy.NpyArray](index.md) / [asStridedMatrix2](.) + +# asStridedMatrix2 + +`fun NpyArray.asStridedMatrix2(): `[`StridedMatrix2`](../-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Serialization.kt#L12) + +Returns a view of the [NpyArray](#) as a 2-D strided matrix. + diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/as-strided-matrix3.md b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/as-strided-matrix3.md new file mode 100644 index 0000000..db53065 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/as-strided-matrix3.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [org.jetbrains.bio.npy.NpyArray](index.md) / [asStridedMatrix3](.) + +# asStridedMatrix3 + +`fun NpyArray.asStridedMatrix3(): `[`StridedMatrix3`](../-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Serialization.kt#L18) + +Returns a view of the [NpyArray](#) as a 3-D strided matrix. + diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/as-strided-vector.md b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/as-strided-vector.md new file mode 100644 index 0000000..efe89f6 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/as-strided-vector.md @@ -0,0 +1,8 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [org.jetbrains.bio.npy.NpyArray](index.md) / [asStridedVector](.) + +# asStridedVector + +`fun NpyArray.asStridedVector(): `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Serialization.kt#L9) + +Returns a view of the [NpyArray](#) as a strided vector. + diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/index.md new file mode 100644 index 0000000..2cbbdcf --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-array/index.md @@ -0,0 +1,9 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [org.jetbrains.bio.npy.NpyArray](.) + +### Extensions for org.jetbrains.bio.npy.NpyArray + +| Name | Summary | +|---|---| +| [asStridedMatrix2](as-strided-matrix2.md) | `fun NpyArray.asStridedMatrix2(): `[`StridedMatrix2`](../-strided-matrix2/index.md)
Returns a view of the [NpyArray](#) as a 2-D strided matrix. | +| [asStridedMatrix3](as-strided-matrix3.md) | `fun NpyArray.asStridedMatrix3(): `[`StridedMatrix3`](../-strided-matrix3/index.md)
Returns a view of the [NpyArray](#) as a 3-D strided matrix. | +| [asStridedVector](as-strided-vector.md) | `fun NpyArray.asStridedVector(): `[`StridedVector`](../-strided-vector/index.md)
Returns a view of the [NpyArray](#) as a strided vector. | diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-file/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-file/index.md new file mode 100644 index 0000000..b7b34f8 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-file/index.md @@ -0,0 +1,7 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [org.jetbrains.bio.npy.NpyFile](.) + +### Extensions for org.jetbrains.bio.npy.NpyFile + +| Name | Summary | +|---|---| +| [write](write.md) | `fun NpyFile.write(path: `[`Path`](http://docs.oracle.com/javase/6/docs/api/java/nio/file/Path.html)`, v: `[`StridedVector`](../-strided-vector/index.md)`): Unit`
Writes a given vector to [path](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpyFile, java.nio.file.Path, org.jetbrains.bio.viktor.StridedVector)/path) in NPY format.`fun NpyFile.write(path: `[`Path`](http://docs.oracle.com/javase/6/docs/api/java/nio/file/Path.html)`, m: `[`StridedMatrix2`](../-strided-matrix2/index.md)`): Unit`
Writes a given 2-D matrix to [path](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpyFile, java.nio.file.Path, org.jetbrains.bio.viktor.StridedMatrix2)/path) in NPY format.`fun NpyFile.write(path: `[`Path`](http://docs.oracle.com/javase/6/docs/api/java/nio/file/Path.html)`, m: `[`StridedMatrix3`](../-strided-matrix3/index.md)`): Unit`
Writes a given 3-D matrix to [path](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpyFile, java.nio.file.Path, org.jetbrains.bio.viktor.StridedMatrix3)/path) in NPY format. | diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-file/write.md b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-file/write.md new file mode 100644 index 0000000..034445d --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npy-file/write.md @@ -0,0 +1,16 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [org.jetbrains.bio.npy.NpyFile](index.md) / [write](.) + +# write + +`fun NpyFile.write(path: `[`Path`](http://docs.oracle.com/javase/6/docs/api/java/nio/file/Path.html)`, v: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Serialization.kt#L24) + +Writes a given vector to [path](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpyFile, java.nio.file.Path, org.jetbrains.bio.viktor.StridedVector)/path) in NPY format. + +`fun NpyFile.write(path: `[`Path`](http://docs.oracle.com/javase/6/docs/api/java/nio/file/Path.html)`, m: `[`StridedMatrix2`](../-strided-matrix2/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Serialization.kt#L29) + +Writes a given 2-D matrix to [path](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpyFile, java.nio.file.Path, org.jetbrains.bio.viktor.StridedMatrix2)/path) in NPY format. + +`fun NpyFile.write(path: `[`Path`](http://docs.oracle.com/javase/6/docs/api/java/nio/file/Path.html)`, m: `[`StridedMatrix3`](../-strided-matrix3/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Serialization.kt#L34) + +Writes a given 3-D matrix to [path](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpyFile, java.nio.file.Path, org.jetbrains.bio.viktor.StridedMatrix3)/path) in NPY format. + diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npz-file.-writer/index.md b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npz-file.-writer/index.md new file mode 100644 index 0000000..804c1d0 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npz-file.-writer/index.md @@ -0,0 +1,7 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [org.jetbrains.bio.npy.NpzFile.Writer](.) + +### Extensions for org.jetbrains.bio.npy.NpzFile.Writer + +| Name | Summary | +|---|---| +| [write](write.md) | `fun Writer.write(name: String, v: `[`StridedVector`](../-strided-vector/index.md)`): Unit`
Adds a given vector to an NPZ format under the specified [name](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpzFile.Writer, kotlin.String, org.jetbrains.bio.viktor.StridedVector)/name).`fun Writer.write(name: String, m: `[`StridedMatrix2`](../-strided-matrix2/index.md)`): Unit`
Writes a given 2-D matrix into an NPZ file under the specified [name](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpzFile.Writer, kotlin.String, org.jetbrains.bio.viktor.StridedMatrix2)/name).`fun Writer.write(name: String, m: `[`StridedMatrix3`](../-strided-matrix3/index.md)`): Unit`
Writes a given 3-D matrix into an NPZ file under the specified [name](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpzFile.Writer, kotlin.String, org.jetbrains.bio.viktor.StridedMatrix3)/name). | diff --git a/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npz-file.-writer/write.md b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npz-file.-writer/write.md new file mode 100644 index 0000000..5f716a7 --- /dev/null +++ b/docs/0.3.4/org.jetbrains.bio.viktor/org.jetbrains.bio.npy.-npz-file.-writer/write.md @@ -0,0 +1,16 @@ +[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [org.jetbrains.bio.npy.NpzFile.Writer](index.md) / [write](.) + +# write + +`fun Writer.write(name: String, v: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Serialization.kt#L39) + +Adds a given vector to an NPZ format under the specified [name](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpzFile.Writer, kotlin.String, org.jetbrains.bio.viktor.StridedVector)/name). + +`fun Writer.write(name: String, m: `[`StridedMatrix2`](../-strided-matrix2/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Serialization.kt#L44) + +Writes a given 2-D matrix into an NPZ file under the specified [name](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpzFile.Writer, kotlin.String, org.jetbrains.bio.viktor.StridedMatrix2)/name). + +`fun Writer.write(name: String, m: `[`StridedMatrix3`](../-strided-matrix3/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Serialization.kt#L49) + +Writes a given 3-D matrix into an NPZ file under the specified [name](write.md#org.jetbrains.bio.viktor$write(org.jetbrains.bio.npy.NpzFile.Writer, kotlin.String, org.jetbrains.bio.viktor.StridedMatrix3)/name). + diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/partition.md b/docs/0.3.4/org.jetbrains.bio.viktor/partition.md similarity index 86% rename from docs/0.3.2/org.jetbrains.bio.viktor/partition.md rename to docs/0.3.4/org.jetbrains.bio.viktor/partition.md index 1dc4086..9d7e521 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/partition.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/partition.md @@ -1,8 +1,8 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [partition](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [partition](.) # partition -`fun `[`StridedVector`](-strided-vector/index.md)`.partition(p: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt#L75) +`fun `[`StridedVector`](-strided-vector/index.md)`.partition(p: Int): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt#L75) Partitions the vector. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/quantile.md b/docs/0.3.4/org.jetbrains.bio.viktor/quantile.md similarity index 83% rename from docs/0.3.2/org.jetbrains.bio.viktor/quantile.md rename to docs/0.3.4/org.jetbrains.bio.viktor/quantile.md index 9726193..f65261a 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/quantile.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/quantile.md @@ -1,8 +1,8 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [quantile](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [quantile](.) # quantile -`fun `[`StridedVector`](-strided-vector/index.md)`.quantile(q: Double = 0.5, randomGenerator: RandomGenerator = DEFAULT_RANDOM): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Random.kt#L51) +`fun `[`StridedVector`](-strided-vector/index.md)`.quantile(q: Double = 0.5, randomGenerator: RandomGenerator = DEFAULT_RANDOM): Double` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Random.kt#L51) Computes the [q](quantile.md#org.jetbrains.bio.viktor$quantile(org.jetbrains.bio.viktor.StridedVector, kotlin.Double, org.apache.commons.math3.random.RandomGenerator)/q)-th order statistic over this vector. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/reorder.md b/docs/0.3.4/org.jetbrains.bio.viktor/reorder.md similarity index 65% rename from docs/0.3.2/org.jetbrains.bio.viktor/reorder.md rename to docs/0.3.4/org.jetbrains.bio.viktor/reorder.md index 05416e2..bde5e9b 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/reorder.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/reorder.md @@ -1,8 +1,8 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [reorder](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [reorder](.) # reorder -`fun `[`StridedVector`](-strided-vector/index.md)`.reorder(indices: IntArray): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt#L41) +`fun `[`StridedVector`](-strided-vector/index.md)`.reorder(indices: IntArray): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt#L41) Applies a given permutation of indices to the elements in the vector. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/reshape.md b/docs/0.3.4/org.jetbrains.bio.viktor/reshape.md similarity index 66% rename from docs/0.3.2/org.jetbrains.bio.viktor/reshape.md rename to docs/0.3.4/org.jetbrains.bio.viktor/reshape.md index 278b32f..c3a9d31 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/reshape.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/reshape.md @@ -1,9 +1,9 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [reshape](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [reshape](.) # reshape -`fun `[`StridedVector`](-strided-vector/index.md)`.reshape(depth: Int, numRows: Int, numColumns: Int): `[`StridedMatrix3`](-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L149) -`fun `[`StridedVector`](-strided-vector/index.md)`.reshape(numRows: Int, numColumns: Int): `[`StridedMatrix2`](-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L213) +`fun `[`StridedVector`](-strided-vector/index.md)`.reshape(depth: Int, numRows: Int, numColumns: Int): `[`StridedMatrix3`](-strided-matrix3/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix3.kt#L182) +`fun `[`StridedVector`](-strided-vector/index.md)`.reshape(numRows: Int, numColumns: Int): `[`StridedMatrix2`](-strided-matrix2/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix2.kt#L224) Reshapes this vector into a matrix in row-major order. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/search-sorted.md b/docs/0.3.4/org.jetbrains.bio.viktor/search-sorted.md similarity index 85% rename from docs/0.3.2/org.jetbrains.bio.viktor/search-sorted.md rename to docs/0.3.4/org.jetbrains.bio.viktor/search-sorted.md index 4063306..2cfe1c6 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/search-sorted.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/search-sorted.md @@ -1,8 +1,8 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [searchSorted](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [searchSorted](.) # searchSorted -`fun `[`StridedVector`](-strided-vector/index.md)`.searchSorted(target: Double): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt#L11) +`fun `[`StridedVector`](-strided-vector/index.md)`.searchSorted(target: Double): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt#L11) Returns the insertion index of [target](search-sorted.md#org.jetbrains.bio.viktor$searchSorted(org.jetbrains.bio.viktor.StridedVector, kotlin.Double)/target) into a sorted vector. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/shuffle.md b/docs/0.3.4/org.jetbrains.bio.viktor/shuffle.md similarity index 72% rename from docs/0.3.2/org.jetbrains.bio.viktor/shuffle.md rename to docs/0.3.4/org.jetbrains.bio.viktor/shuffle.md index f387a3a..c349217 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/shuffle.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/shuffle.md @@ -1,8 +1,8 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [shuffle](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [shuffle](.) # shuffle -`fun `[`StridedVector`](-strided-vector/index.md)`.shuffle(randomGenerator: RandomGenerator = DEFAULT_RANDOM): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Random.kt#L76) +`fun `[`StridedVector`](-strided-vector/index.md)`.shuffle(randomGenerator: RandomGenerator = DEFAULT_RANDOM): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Random.kt#L76) Randomly permutes the elements of this vector. diff --git a/docs/0.3.2/org.jetbrains.bio.viktor/sort.md b/docs/0.3.4/org.jetbrains.bio.viktor/sort.md similarity index 74% rename from docs/0.3.2/org.jetbrains.bio.viktor/sort.md rename to docs/0.3.4/org.jetbrains.bio.viktor/sort.md index 5eea692..65efb17 100644 --- a/docs/0.3.2/org.jetbrains.bio.viktor/sort.md +++ b/docs/0.3.4/org.jetbrains.bio.viktor/sort.md @@ -1,8 +1,8 @@ -[0.3.2](../index.md) / [org.jetbrains.bio.viktor](index.md) / [sort](.) +[0.3.4](../index.md) / [org.jetbrains.bio.viktor](index.md) / [sort](.) # sort -`fun `[`StridedVector`](-strided-vector/index.md)`.sort(reverse: Boolean = false): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.2/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt#L13) +`fun `[`StridedVector`](-strided-vector/index.md)`.sort(reverse: Boolean = false): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt#L13) Sorts the elements in this vector in in descending order. diff --git a/gradle.properties b/gradle.properties index e4e5efc..c20a1ec 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=0.3.3 +version=0.3.4 org.gradle.configureondemand=true org.gradle.parallel=true diff --git a/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt b/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt index 17a9d6b..d1da42c 100644 --- a/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt +++ b/src/main/kotlin/org/jetbrains/bio/viktor/Searching.kt @@ -38,7 +38,7 @@ fun StridedVector.argMin(): Int { return minPos } -/** Returns the index of the maxmimum element. */ +/** Returns the index of the maximum element. */ fun StridedVector.argMax(): Int { require(size > 0) { "no data" } var maxPos = 0 diff --git a/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt b/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt index b00691d..e158848 100644 --- a/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt +++ b/src/main/kotlin/org/jetbrains/bio/viktor/Sorting.kt @@ -15,7 +15,7 @@ fun StridedVector.sort(reverse: Boolean = false) = reorder(argSort(reverse)) /** * Returns a permutation of indices which makes the vector sorted. * - * @param reverse see [.sort] for details. + * @param reverse see [sort] for details. */ fun StridedVector.argSort(reverse: Boolean = false): IntArray { val comparator = Comparator(IndexedDoubleValue::compareTo) diff --git a/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt b/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt index 01e113f..f7e05ab 100644 --- a/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt +++ b/src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt @@ -21,14 +21,18 @@ fun DoubleArray.asStrided(offset: Int = 0, size: Int = this.size): StridedVector * elements of a vector can be at arbitrary index intervals (strides) * from each other. For example * - * data = [0, 1, 2, 3, 4, 5] - * offset = 1 - * size = 2 - * stride = 3 + * ``` + * data = [0, 1, 2, 3, 4, 5] + * offset = 1 + * size = 2 + * stride = 3 + * ``` * * corresponds to a vector with elements * - * [1, 4] + * ``` + * [1, 4] + * ``` * * Vectors with `stride` equal to 1 are called called *dense*. The * distinction is important because some of the operations can be