times

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