diff --git a/src/Numerics/LinearAlgebra/Double/SparseMatrix.cs b/src/Numerics/LinearAlgebra/Double/SparseMatrix.cs index 48b65e7d..9bf81131 100644 --- a/src/Numerics/LinearAlgebra/Double/SparseMatrix.cs +++ b/src/Numerics/LinearAlgebra/Double/SparseMatrix.cs @@ -1443,27 +1443,7 @@ namespace MathNet.Numerics.LinearAlgebra.Double } } } - - /// - /// Multiplies the transpose of this matrix with a vector and places the results into the result vector. - /// - /// The vector to multiply with. - /// The result of the multiplication. - protected override void DoTransposeThisAndMultiply(Vector rightSide, Vector result) - { - throw new NotImplementedException(); - } - - /// - /// Multiplies the transpose of this matrix with another matrix and places the results into the result matrix. - /// - /// The matrix to multiply with. - /// The result of the multiplication. - protected override void DoTransposeThisAndMultiply(Matrix other, Matrix result) - { - throw new NotImplementedException(); - } - + /// /// Negate each element of this matrix and place the results into the result matrix. ///