FTIRD.NUMIN
1.0.0
dotnet add package FTIRD.NUMIN --version 1.0.0
NuGet\Install-Package FTIRD.NUMIN -Version 1.0.0
<PackageReference Include="FTIRD.NUMIN" Version="1.0.0" />
<PackageVersion Include="FTIRD.NUMIN" Version="1.0.0" />
<PackageReference Include="FTIRD.NUMIN" />
paket add FTIRD.NUMIN --version 1.0.0
#r "nuget: FTIRD.NUMIN, 1.0.0"
#addin nuget:?package=FTIRD.NUMIN&version=1.0.0
#tool nuget:?package=FTIRD.NUMIN&version=1.0.0
FTIRD.NUMIN
FTIRD.NUMIN is a powerful numerical library designed to simplify mathematical and scientific computations. With extensive support for linear algebra, matrix operations, and utility functions, this library is your go-to companion for numerical computing in .NET.
Features
- Matrix Operations: Multiplication, Transpose, Determinant, Inverse, Dot Product, and more.
- Linear Algebra: LU Decomposition, QR Decomposition, Singular Value Decomposition (SVD), Cholesky Decomposition, and Eigenvalues/Eigenvectors.
- Utility Functions: Initialization methods (zeros, ones, identity, etc.).
Installation
To install FTIRD.NUMIN, use the following NuGet command:
dotnet add package FTIRD.NUMIN
Creating NDArrays
You can easily create NDArrays of various shapes and initialize them with specific values.
using Nm = FTIRD.NUMIN.Core;
class Program
{
static void Main()
{
// Create an NDArray with shape [2, 2]
Nm.NDArray<double> array = new Nm.NDArray<double>(new int[] { 2, 2 });
// Initialize the NDArray with zeros
Nm.NDArray<double> zeros = Nm.NDArrayInitialization.Zeros<double>(2, 2);
// Print the NDArray
Console.WriteLine(zeros);
}
}
Performing Linear Algebra Operations
FTIRD.NUMIN offers a variety of linear algebra operations to solve complex mathematical problems.
LU Decomposition
using Nm = FTIRD.NUMIN.Core;
using System;
class Program
{
static void Main()
{
Nm.NDArray<double> array = new Nm.NDArray<double>(new int[] { 2, 2 });
// Initialize the array with some values
array[0, 0] = 4;
array[0, 1] = 3;
array[1, 0] = 3;
array[1, 1] = 2;
// Perform LU Decomposition
var (L, U) = array.LUDecomposition();
// Print the results
Console.WriteLine("L:");
Console.WriteLine(L);
Console.WriteLine("U:");
Console.WriteLine(U);
}
}
QR Decompostion
using Nm = FTIRD.NUMIN.Core;
using System;
class Program
{
static void Main()
{
Nm.NDArray<double> array = new Nm.NDArray<double>(new int[] { 2, 2 });
// Initialize the array with some values
array[0, 0] = 1;
array[0, 1] = 2;
array[1, 0] = 3;
array[1, 1] = 4;
// Perform QR Decomposition
var (Q, R) = array.QRDecomposition(Math.Sqrt);
// Print the results
Console.WriteLine("Q:");
Console.WriteLine(Q);
Console.WriteLine("R:");
Console.WriteLine(R);
}
}
Singular Value Decomposition (SVD)
using Nm = FTIRD.NUMIN.Core;
using System;
class Program
{
static void Main()
{
Nm.NDArray<double> array = new Nm.NDArray<double>(new int[] { 2, 2 });
// Initialize the array with some values
array[0, 0] = 1;
array[0, 1] = 0;
array[1, 0] = 0;
array[1, 1] = -2;
// Perform Singular Value Decomposition (SVD)
var (U, S, V) = array.SVD();
// Print the results
Console.WriteLine("U:");
Console.WriteLine(U);
Console.WriteLine("S:");
Console.WriteLine(S);
Console.WriteLine("V:");
Console.WriteLine(V);
}
}
Cholesky Decomposition
using Nm = FTIRD.NUMIN.Core;
using System;
class Program
{
static void Main()
{
Nm.NDArray<double> array = new Nm.NDArray<double>(new int[] { 2, 2 });
// Initialize the array with some values
array[0, 0] = 4;
array[0, 1] = 12;
array[1, 0] = 12;
array[1, 1] = 37;
// Perform Cholesky Decomposition
Nm.NDArray<double> L = array.CholeskyDecomposition_Decompose(Math.Sqrt);
// Print the result
Console.WriteLine("L:");
Console.WriteLine(L);
}
}
Utility Functions
FTIRD.NUMIN also provides useful utility functions for initializing and manipulating NDArrays.
Initialization
using Nm = FTIRD.NUMIN.Core;
using System;
class Program
{
static void Main()
{
// Create an NDArray filled with zeros
Nm.NDArray<double> zeros = Nm.NDArrayInitialization.Zeros<double>(3, 3);
// Create an NDArray filled with ones
Nm.NDArray<double> ones = Nm.NDArrayInitialization.Ones<double>(3, 3);
// Print the NDArrays
Console.WriteLine("Zeros:");
Console.WriteLine(zeros);
Console.WriteLine("Ones:");
Console.WriteLine(ones);
}
}
Package Version
- Initial Version: 1.0.0
Upcoming version will be updated and documentation will come, stay tuned!
Feel free to contact.
Happy Coding!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net7.0
- Newtonsoft.Json (>= 13.0.3)
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
-
net9.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 203 | 3/6/2025 |
Initial release (1.0.0) of FTIRD.NUMIN. This release includes:
- Core functionalities for NDArray operations.
- Linear algebra methods including LU Decomposition, QR Decomposition, SVD, Cholesky Decomposition, and Eigenvalues/Eigenvectors.
- Utility functions for NDArray initialization (zeros, ones, identity, etc.).