Browse Source

Cleanup: drop unused variable and suppress a warning

uap-experimental
Christoph Ruegg 6 years ago
parent
commit
49740efdd0
  1. 2
      src/FSharp.Tests/FitTests.fs
  2. 1
      src/Numerics/Statistics/Correlation.cs

2
src/FSharp.Tests/FitTests.fs

@ -7,6 +7,8 @@ open FsUnitTyped
open System
open MathNet.Numerics
#nowarn "25"
module FitTests =
[<Test>]

1
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++)

Loading…
Cancel
Save