diff --git a/src/FSharp.Tests/FitTests.fs b/src/FSharp.Tests/FitTests.fs index 793bef7a..e3e857d2 100644 --- a/src/FSharp.Tests/FitTests.fs +++ b/src/FSharp.Tests/FitTests.fs @@ -7,6 +7,8 @@ open FsUnitTyped open System open MathNet.Numerics +#nowarn "25" + module FitTests = [] diff --git a/src/Numerics/Statistics/Correlation.cs b/src/Numerics/Statistics/Correlation.cs index 369acd39..f3289fbb 100644 --- a/src/Numerics/Statistics/Correlation.cs +++ b/src/Numerics/Statistics/Correlation.cs @@ -129,7 +129,6 @@ namespace MathNet.Numerics.Statistics Complex[] xFFT2 = new Complex[nFFT]; double xDash = ArrayStatistics.Mean(x); - double xArrNow = 0.0d; // copy values in range and substract mean - all the remaining parts are padded with zero. for (int i = 0; i < x.Length; i++)