diff --git a/RELEASENOTES.md b/RELEASENOTES.md index d579fff2..ca1333ec 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,13 @@ +### 4.7.0 - 2018-11-11 +* Special Functions: Airy functions Ai, Bi *~Jong Hyun Kim* +* Special Functions: Bessel functions of the first and second kind *~Jong Hyun Kim* +* Special Functions: Modified Bessel functions of the first and second kind *~Jong Hyun Kim* +* Special Functions: Spherical Bessel functions of the first and second kind *~Jong Hyun Kim* +* Special Functions: Hankel functions of the first and second kind *~Jong Hyun Kim* +* Special Functions: Kelvin functions of the first and second kind, and derivatives *~Jong Hyun Kim* +* Linear Algebra: optimized sparse implementation of transpose-multiply *~Richard Reader* +* Linear Algebra: optimized range checking in vectors and matrices + ### 4.6.0 - 2018-10-19 * Polynomial: New Polynomial data structure *~Tobias Glaubach* * Statistics: Correlate.Auto auto correlation *~Tobias Glaubach* diff --git a/src/Data.Tests/app.config b/src/Data.Tests/app.config deleted file mode 100644 index f072f570..00000000 --- a/src/Data.Tests/app.config +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/Data/Matlab/app.config b/src/Data/Matlab/app.config deleted file mode 100644 index f072f570..00000000 --- a/src/Data/Matlab/app.config +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/Data/Text/app.config b/src/Data/Text/app.config deleted file mode 100644 index f072f570..00000000 --- a/src/Data/Text/app.config +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/FSharp.Tests/App.config b/src/FSharp.Tests/App.config deleted file mode 100644 index c479ebd0..00000000 --- a/src/FSharp.Tests/App.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/FSharp.Tests/AssemblyInfo.fs b/src/FSharp.Tests/AssemblyInfo.fs index c2ff65fc..bc1d3d6d 100644 --- a/src/FSharp.Tests/AssemblyInfo.fs +++ b/src/FSharp.Tests/AssemblyInfo.fs @@ -10,9 +10,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] [] [] diff --git a/src/FSharp.Tests/FSharp.Tests.fsproj b/src/FSharp.Tests/FSharp.Tests.fsproj index cbe75b21..212e16a8 100644 --- a/src/FSharp.Tests/FSharp.Tests.fsproj +++ b/src/FSharp.Tests/FSharp.Tests.fsproj @@ -32,7 +32,6 @@ - diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index 5684f6aa..c043ba7e 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -44,9 +44,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] [] [] diff --git a/src/FSharp/FSharp.fsproj b/src/FSharp/FSharp.fsproj index 14de9969..3bf79fe9 100644 --- a/src/FSharp/FSharp.fsproj +++ b/src/FSharp/FSharp.fsproj @@ -7,14 +7,19 @@ MathNet.Numerics true MathNet.Numerics.FSharp$(PackageIdSuffix) - 4.6.0 + 4.7.0 Math.NET Numerics for F#$(TitleSuffix) F# Modules for Math.NET Numerics, the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Supports .Net Framework 4.5 or higher and .Net Standard 1.6 or higher, on Windows, Linux and Mac.$(DescriptionSuffix) - Polynomial: New Polynomial data structure ~Tobias Glaubach -Statistics: Correlate.Auto auto correlation ~Tobias Glaubach -Curve Fitting: Fit.Curve for non-linear least-squares fitting to an arbitray function + Special Functions: Airy functions Ai, Bi ~Jong Hyun Kim +Special Functions: Bessel functions of the first and second kind ~Jong Hyun Kim +Special Functions: Modified Bessel functions of the first and second kind ~Jong Hyun Kim +Special Functions: Spherical Bessel functions of the first and second kind ~Jong Hyun Kim +Special Functions: Hankel functions of the first and second kind ~Jong Hyun Kim +Special Functions: Kelvin functions of the first and second kind, and derivatives ~Jong Hyun Kim +Linear Algebra: optimized sparse implementation of transpose-multiply ~Richard Reader +Linear Algebra: optimized range checking in vectors and matrices fsharp F# math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft false en @@ -30,7 +35,6 @@ Curve Fitting: Fit.Curve for non-linear least-squares fitting to an arbitray fun - diff --git a/src/FSharp/app.config b/src/FSharp/app.config deleted file mode 100644 index f072f570..00000000 --- a/src/FSharp/app.config +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/Numerics.Tests/Numerics.Tests.csproj b/src/Numerics.Tests/Numerics.Tests.csproj index ae114a58..b44c6c90 100644 --- a/src/Numerics.Tests/Numerics.Tests.csproj +++ b/src/Numerics.Tests/Numerics.Tests.csproj @@ -17,7 +17,6 @@ - diff --git a/src/Numerics.Tests/Properties/AssemblyInfo.cs b/src/Numerics.Tests/Properties/AssemblyInfo.cs index 39838fe3..d87fabd8 100644 --- a/src/Numerics.Tests/Properties/AssemblyInfo.cs +++ b/src/Numerics.Tests/Properties/AssemblyInfo.cs @@ -9,8 +9,8 @@ using MathNet.Numerics.UnitTests; [assembly: ComVisible(false)] [assembly: Guid("04157581-63f3-447b-a277-83c6e69126a4")] -[assembly: AssemblyVersion("4.6.0.0")] -[assembly: AssemblyFileVersion("4.6.0.0")] -[assembly: AssemblyInformationalVersion("4.6.0")] +[assembly: AssemblyVersion("4.7.0.0")] +[assembly: AssemblyFileVersion("4.7.0.0")] +[assembly: AssemblyInformationalVersion("4.7.0")] [assembly: UseLinearAlgebraProvider] diff --git a/src/Numerics.Tests/app.config b/src/Numerics.Tests/app.config deleted file mode 100644 index f072f570..00000000 --- a/src/Numerics.Tests/app.config +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/Numerics/Numerics.csproj b/src/Numerics/Numerics.csproj index ef8999f1..620bb6f0 100644 --- a/src/Numerics/Numerics.csproj +++ b/src/Numerics/Numerics.csproj @@ -7,14 +7,19 @@ MathNet.Numerics true MathNet.Numerics$(PackageIdSuffix) - 4.6.0 + 4.7.0 Math.NET Numerics$(TitleSuffix) Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Supports .Net Framework 4.0 or higher and .Net Standard 1.3 or higher, on Windows, Linux and Mac.$(DescriptionSuffix) - Polynomial: New Polynomial data structure ~Tobias Glaubach -Statistics: Correlate.Auto auto correlation ~Tobias Glaubach -Curve Fitting: Fit.Curve for non-linear least-squares fitting to an arbitray function + Special Functions: Airy functions Ai, Bi ~Jong Hyun Kim +Special Functions: Bessel functions of the first and second kind ~Jong Hyun Kim +Special Functions: Modified Bessel functions of the first and second kind ~Jong Hyun Kim +Special Functions: Spherical Bessel functions of the first and second kind ~Jong Hyun Kim +Special Functions: Hankel functions of the first and second kind ~Jong Hyun Kim +Special Functions: Kelvin functions of the first and second kind, and derivatives ~Jong Hyun Kim +Linear Algebra: optimized sparse implementation of transpose-multiply ~Richard Reader +Linear Algebra: optimized range checking in vectors and matrices math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft false en @@ -33,7 +38,6 @@ Curve Fitting: Fit.Curve for non-linear least-squares fitting to an arbitray fun - \ No newline at end of file diff --git a/src/Numerics/app.config b/src/Numerics/app.config deleted file mode 100644 index f072f570..00000000 --- a/src/Numerics/app.config +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/TestData/Properties/AssemblyInfo.cs b/src/TestData/Properties/AssemblyInfo.cs index 6b313307..ea084068 100644 --- a/src/TestData/Properties/AssemblyInfo.cs +++ b/src/TestData/Properties/AssemblyInfo.cs @@ -14,5 +14,5 @@ using System.Runtime.InteropServices; [assembly: Guid("a4a6a08e-5265-4608-a43d-e4f2e210ba2d")] -[assembly: AssemblyVersion("4.6.0.0")] -[assembly: AssemblyFileVersion("4.6.0.0")] +[assembly: AssemblyVersion("4.7.0.0")] +[assembly: AssemblyFileVersion("4.7.0.0")]