Browse Source

style cop fix

pull/36/head
Marcus Cuda 16 years ago
parent
commit
e5cff395ea
  1. 4
      src/Numerics/LinearAlgebra/Double/Matrix.cs

4
src/Numerics/LinearAlgebra/Double/Matrix.cs

@ -1794,8 +1794,8 @@ namespace MathNet.Numerics.LinearAlgebra.Double
var transpose = Transpose();
var aat = this * transpose;
//TODO: Replace with multiple Transpose
// aat.Gemm(1.0, 0.0, false, true, this, this);
// TODO: Replace with multiple Transpose
//// aat.Gemm(1.0, 0.0, false, true, this, this);
var norm = 0.0;
for (var i = 0; i < RowCount; i++)

Loading…
Cancel
Save