An experimental advanced math library for .NET with:
- Linear algebra (solving, inversion, determinants)
- Fourier analysis (DFT, FFT, spectral analysis)
- Numerical integration and differentiation
- Optimization algorithms
- Statistical functions
- Signal processing
- Financial maths
To create a NuGet package:
dotnet pack -c Releaseor (if we want to ensure dependencies in the .nupkg):
dotnet pack --include-symbols --include-source -c ReleaseTo install the package locally:
dotnet add package AdvancedMathLib --source directoryOfAdvancedMathLibProject/bin/ReleaseTo reinstall the package locally:
dotnet clean
dotnet nuget locals all --clear
dotnet restore
dotnet add package AdvancedMathLib --source directoryOfAdvancedMathLibProject/bin/Release