public Matrix MultiplyRight(IMatrixView other, bool transposeThis = false, bool transposeOther = false) { return(DenseStrategies.Multiply(this, other, transposeThis, transposeOther)); }
/// <summary> /// See <see cref="IMatrixView.MultiplyLeft(IMatrixView, bool, bool)"/>. /// </summary> public Matrix MultiplyLeft(IMatrixView matrix, bool transposeThis = false, bool transposeOther = false) { return(DenseStrategies.Multiply(matrix, this, transposeOther, transposeThis)); }