times

abstract operator fun RowVector<N>.times(other: N): RowVector<N>(source)
abstract operator fun N.times(other: RowVector<N>): RowVector<N>(source)
abstract operator fun ColumnVector<N>.times(other: N): ColumnVector<N>(source)
abstract operator fun N.times(other: ColumnVector<N>): ColumnVector<N>(source)
abstract operator fun Matrix<N>.times(other: N): Matrix<N>(source)
abstract operator fun N.times(other: Matrix<N>): Matrix<N>(source)
abstract operator fun Matrix<N>.times(other: Matrix<N>): Matrix<N>(source)
abstract operator fun Matrix<N>.times(other: ColumnVector<N>): ColumnVector<N>(source)
abstract operator fun RowVector<N>.times(other: Matrix<N>): RowVector<N>(source)
abstract operator fun RowVector<N>.times(other: ColumnVector<N>): N(source)