Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/Gemstone.Numeric/Analysis/Filter/DigitalFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using Gemstone.Units;

namespace Gemstone.Numeric.Analysis;

Expand All @@ -37,7 +35,7 @@
private List<double> m_b; // Numerator coefficients
private List<double> m_a; // Denominator coefficients

public DigitalFilter(double[] b, double[] a, int size)

Check warning on line 38 in src/Gemstone.Numeric/Analysis/Filter/DigitalFilter.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Missing XML comment for publicly visible type or member 'DigitalFilter.DigitalFilter(double[], double[], int)'
{
m_b = new List<double>(size);
m_b.AddRange(b);
Expand All @@ -50,7 +48,7 @@
}

// Inspired by https://github.com/pgii/FiltfiltSharp
public double[] FiltFilt(double[] x)

Check warning on line 51 in src/Gemstone.Numeric/Analysis/Filter/DigitalFilter.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Missing XML comment for publicly visible type or member 'DigitalFilter.FiltFilt(double[])'
{
if (x == null)
throw new ArgumentNullException(nameof(x));
Expand Down Expand Up @@ -243,7 +241,7 @@
return result;
}

public static double[] FiltFilt(double[] b, double[] a, double[] x)

Check warning on line 244 in src/Gemstone.Numeric/Analysis/Filter/DigitalFilter.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Missing XML comment for publicly visible type or member 'DigitalFilter.FiltFilt(double[], double[], double[])'
{
if (b == null)
throw new ArgumentNullException(nameof(b));
Expand Down
2 changes: 0 additions & 2 deletions src/Gemstone.Numeric/Analysis/NumericAnalysisExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@

using System;
using System.Collections.Generic;
using System.DirectoryServices.ActiveDirectory;
using System.Linq;
using System.Numerics;
using Gemstone.Collections.CollectionExtensions;

namespace Gemstone.Numeric.Analysis;
Expand Down
17 changes: 0 additions & 17 deletions src/Gemstone.Numeric/Analysis/VariableModeDecomposition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,10 @@
//------------------------------------------------------------------------------------------------------

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel.Design;
using System.Diagnostics;
using System.DirectoryServices.ActiveDirectory;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Security.Cryptography;
using System.Security.Cryptography.Xml;
using System.Xml.Linq;
using Gemstone.Numeric.Random.Normal;
using Gemstone.Numeric.Random.Uniform;
using JetBrains.Annotations;
using MathNet.Numerics;
using MathNet.Numerics.Data.Matlab;
using MathNet.Numerics.LinearAlgebra;
using MathNet.Numerics.LinearAlgebra.Factorization;
using MathNet.Numerics.LinearAlgebra.Solvers;
using MathNet.Numerics.Random;
using Microsoft.Extensions.Hosting;

namespace Gemstone.Numeric.Analysis;

Expand Down Expand Up @@ -175,11 +158,11 @@
/// signalBoundary applies mirroring to signal if ifInverse is 0 and removes mirrored signal otherwise.Mirror extension of the signal by half its
/// length on each side.Removing mirrored signal is a inverse process of the mirror extension.
/// </summary>
/// <param name=""></param>

Check warning on line 161 in src/Gemstone.Numeric/Analysis/VariableModeDecomposition.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

XML comment has a param tag for '', but there is no parameter by that name
/// <param name=""></param>

Check warning on line 162 in src/Gemstone.Numeric/Analysis/VariableModeDecomposition.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

XML comment has a param tag for '', but there is no parameter by that name
/// <param name=""></param>

Check warning on line 163 in src/Gemstone.Numeric/Analysis/VariableModeDecomposition.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

XML comment has a param tag for '', but there is no parameter by that name
/// <returns></returns>
private static Matrix<ComplexNumber> SignalBoundary(Matrix<ComplexNumber> x, int nHalfSignalLenght, int nMirroredSignalLength, int nSignalLength, bool isInverse)

Check warning on line 165 in src/Gemstone.Numeric/Analysis/VariableModeDecomposition.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Parameter 'nMirroredSignalLength' has no matching param tag in the XML comment for 'VariableModeDecomposition.SignalBoundary(Matrix<ComplexNumber>, int, int, int, bool)' (but other parameters do)

Check warning on line 165 in src/Gemstone.Numeric/Analysis/VariableModeDecomposition.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Parameter 'nHalfSignalLenght' has no matching param tag in the XML comment for 'VariableModeDecomposition.SignalBoundary(Matrix<ComplexNumber>, int, int, int, bool)' (but other parameters do)

Check warning on line 165 in src/Gemstone.Numeric/Analysis/VariableModeDecomposition.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Parameter 'x' has no matching param tag in the XML comment for 'VariableModeDecomposition.SignalBoundary(Matrix<ComplexNumber>, int, int, int, bool)' (but other parameters do)
{
Complex32[] fft;

Expand Down
2 changes: 0 additions & 2 deletions src/Gemstone.Numeric/Geo/GeoCoordinate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
//
//******************************************************************************************************

using System;

namespace Gemstone.Numeric.Geo;

/// <summary>
Expand Down
3 changes: 0 additions & 3 deletions src/Gemstone.Numeric/Interpolation/Pchip.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@
//******************************************************************************************************

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;

namespace Gemstone.Numeric.Interpolation;

Expand Down
5 changes: 0 additions & 5 deletions src/Gemstone.Numeric/Matrix/Matrix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,9 @@


using System;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using Gemstone.Numeric.ComplexExtensions;
using Gemstone.Units;
using System.Numerics;
using System.Linq;
using System.Collections.Generic;
using System.Data;

// ReSharper disable CompareOfFloatsByEqualityOperator
// ReSharper disable PossibleInvalidOperationException
Expand Down
Loading