matrixOf
Creates a 1xC matrix from a single row vector.
Creates a 2xC matrix from two row vectors.
Creates a 3xC matrix from three row vectors.
fun <C : Nat> matrixOf(row0: Vector<C>, row1: Vector<C>, row2: Vector<C>, row3: Vector<C>): Matrix<N4, C>(source)
Creates a 4xC matrix from four row vectors.
fun <C : Nat> matrixOf(row0: Vector<C>, row1: Vector<C>, row2: Vector<C>, row3: Vector<C>, row4: Vector<C>): Matrix<N5, C>(source)
Creates a 5xC matrix from five row vectors.
fun <C : Nat> matrixOf(row0: Vector<C>, row1: Vector<C>, row2: Vector<C>, row3: Vector<C>, row4: Vector<C>, row5: Vector<C>): Matrix<N6, C>(source)
Creates a 6xC matrix from six row vectors.
fun <C : Nat> matrixOf(row0: Vector<C>, row1: Vector<C>, row2: Vector<C>, row3: Vector<C>, row4: Vector<C>, row5: Vector<C>, row6: Vector<C>): Matrix<N7, C>(source)
Creates a 7xC matrix from seven row vectors.
fun <C : Nat> matrixOf(row0: Vector<C>, row1: Vector<C>, row2: Vector<C>, row3: Vector<C>, row4: Vector<C>, row5: Vector<C>, row6: Vector<C>, row7: Vector<C>): Matrix<N8, C>(source)
Creates an 8xC matrix from eight row vectors.
fun <C : Nat> matrixOf(row0: Vector<C>, row1: Vector<C>, row2: Vector<C>, row3: Vector<C>, row4: Vector<C>, row5: Vector<C>, row6: Vector<C>, row7: Vector<C>, row8: Vector<C>): Matrix<N9, C>(source)
Creates a 9xC matrix from nine row vectors.
fun <C : Nat> matrixOf(row0: Vector<C>, row1: Vector<C>, row2: Vector<C>, row3: Vector<C>, row4: Vector<C>, row5: Vector<C>, row6: Vector<C>, row7: Vector<C>, row8: Vector<C>, row9: Vector<C>): Matrix<N10, C>(source)
Creates a 10xC matrix from ten row vectors.