Package-level declarations

Properties

Link copied to clipboard
val <Number> Matrix<Number>.det: <Error class: unknown class>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val <N, A : Ring<N>> Matrix<N>.transpose: Matrix<N>

Functions

Link copied to clipboard
inline fun <E> ColumnVector<E>.all(block: (value: E) -> Boolean): Boolean
inline fun <E> Matrix<E>.all(block: (value: E) -> Boolean): Boolean
inline fun <E> RowVector<E>.all(block: (value: E) -> Boolean): Boolean
Link copied to clipboard
inline fun <E> ColumnVector<E>.allIndexed(block: (index: UInt, value: E) -> Boolean): Boolean
inline fun <E> Matrix<E>.allIndexed(block: (rowIndex: UInt, columnIndex: UInt, value: E) -> Boolean): Boolean
inline fun <E> RowVector<E>.allIndexed(block: (index: UInt, value: E) -> Boolean): Boolean
Link copied to clipboard
inline fun <E> ColumnVector<E>.any(block: (value: E) -> Boolean): Boolean
inline fun <E> Matrix<E>.any(block: (value: E) -> Boolean): Boolean
inline fun <E> RowVector<E>.any(block: (value: E) -> Boolean): Boolean
Link copied to clipboard
inline fun <E> ColumnVector<E>.anyIndexed(block: (index: UInt, value: E) -> Boolean): Boolean
inline fun <E> Matrix<E>.anyIndexed(block: (rowIndex: UInt, columnIndex: UInt, value: E) -> Boolean): Boolean
inline fun <E> RowVector<E>.anyIndexed(block: (index: UInt, value: E) -> Boolean): Boolean
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun <E, R> ColumnVector<E>.fold(initial: R, operation: (acc: R, E) -> R): R
inline fun <E, R> Matrix<E>.fold(initial: R, operation: (acc: R, E) -> R): R
inline fun <E, R> RowVector<E>.fold(initial: R, operation: (acc: R, E) -> R): R
Link copied to clipboard
inline fun <E, R> ColumnVector<E>.foldIndexed(initial: R, operation: (index: UInt, acc: R, E) -> R): R
inline fun <E, R> Matrix<E>.foldIndexed(initial: R, operation: (rowIndex: UInt, columnIndex: UInt, acc: R, E) -> R): R
inline fun <E, R> RowVector<E>.foldIndexed(initial: R, operation: (index: UInt, acc: R, E) -> R): R
Link copied to clipboard
inline fun <E> ColumnVector<E>.forEach(block: (value: E) -> Unit)
inline fun <E> Matrix<E>.forEach(block: (value: E) -> Unit)
inline fun <E> RowVector<E>.forEach(block: (value: E) -> Unit)
Link copied to clipboard
inline fun <E> ColumnVector<E>.forEachIndexed(block: (index: UInt, value: E) -> Unit)
inline fun <E> Matrix<E>.forEachIndexed(block: (rowIndex: UInt, columnIndex: UInt, value: E) -> Unit)
inline fun <E> RowVector<E>.forEachIndexed(block: (index: UInt, value: E) -> Unit)
Link copied to clipboard
inline fun <E, R> ColumnVector<E>.map(transform: (E) -> R): ColumnVector<R>
inline fun <E, R> Matrix<E>.map(transform: (E) -> R): Matrix<R>
inline fun <E, R> RowVector<E>.map(transform: (E) -> R): RowVector<R>
Link copied to clipboard
inline fun <E, R> ColumnVector<E>.mapIndexed(transform: (index: UInt, E) -> R): ColumnVector<R>
inline fun <E, R> Matrix<E>.mapIndexed(transform: (rowIndex: UInt, columnIndex: UInt, E) -> R): Matrix<R>
inline fun <E, R> RowVector<E>.mapIndexed(transform: (index: UInt, E) -> R): RowVector<R>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun <E> ColumnVector<E>.none(block: (value: E) -> Boolean): Boolean
inline fun <E> Matrix<E>.none(block: (value: E) -> Boolean): Boolean
inline fun <E> RowVector<E>.none(block: (value: E) -> Boolean): Boolean
Link copied to clipboard
inline fun <E> ColumnVector<E>.noneIndexed(block: (index: UInt, value: E) -> Boolean): Boolean
inline fun <E> Matrix<E>.noneIndexed(block: (rowIndex: UInt, columnIndex: UInt, value: E) -> Boolean): Boolean
inline fun <E> RowVector<E>.noneIndexed(block: (index: UInt, value: E) -> Boolean): Boolean
Link copied to clipboard
fun <E> ColumnVector<E>.sum(): E
fun <E> Matrix<E>.sum(): E
fun <E> RowVector<E>.sum(): E
Link copied to clipboard
inline fun <E, A> ColumnVector<E>.sumOf(selector: (E) -> A): A
inline fun <E, A> Matrix<E>.sumOf(selector: (E) -> A): A
inline fun <E, A> RowVector<E>.sumOf(selector: (E) -> A): A
Link copied to clipboard
inline fun <E, A> ColumnVector<E>.sumOfIndexed(selector: (index: UInt, E) -> A): A
inline fun <E, A> Matrix<E>.sumOfIndexed(selector: (rowIndex: UInt, columnIndex: UInt, E) -> A): A
inline fun <E, A> RowVector<E>.sumOfIndexed(selector: (index: UInt, E) -> A): A
Link copied to clipboard
inline fun <E> ColumnVector<E>.withEach(block: E.() -> Unit)
inline fun <E> Matrix<E>.withEach(block: E.() -> Unit)
inline fun <E> RowVector<E>.withEach(block: E.() -> Unit)
Link copied to clipboard
inline fun <E> ColumnVector<E>.withEachIndexed(block: E.(index: UInt) -> Unit)
inline fun <E> Matrix<E>.withEachIndexed(block: E.(rowIndex: UInt, columnIndex: UInt) -> Unit)
inline fun <E> RowVector<E>.withEachIndexed(block: E.(index: UInt) -> Unit)