TYoshimura.Algebra 2.1.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package TYoshimura.Algebra --version 2.1.5                
NuGet\Install-Package TYoshimura.Algebra -Version 2.1.5                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TYoshimura.Algebra" Version="2.1.5" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TYoshimura.Algebra --version 2.1.5                
#r "nuget: TYoshimura.Algebra, 2.1.5"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TYoshimura.Algebra as a Cake Addin
#addin nuget:?package=TYoshimura.Algebra&version=2.1.5

// Install TYoshimura.Algebra as a Cake Tool
#tool nuget:?package=TYoshimura.Algebra&version=2.1.5                

Algebra

Linear Algebra

Requirement

.NET 8.0
DoubleDouble

Install

Download DLL
Download Nuget

Usage

// solve for v: Av=x
Matrix a = new double[,] { { 1, 2 }, { 3, 4 } };
Vector x = (4, 3);

Vector v = Matrix.Solve(a, x);

Licence

MIT

Author

T.Yoshimura

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on TYoshimura.Algebra:

Package Downloads
TYoshimura.CurveFitting

Curvefitting - linear, polynomial, pade, arbitrary function

TYoshimura.DoubleDouble.Statistic

Double-Double Statistic Implements

TYoshimura.Regression

Regression Analysis Utility

TYoshimura.ComplexAlgebra

Complex Algebra

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.2 118 9/6/2024
2.2.1 96 9/5/2024
2.2.0 112 9/4/2024
2.1.9 99 9/1/2024
2.1.8 102 8/31/2024
2.1.7 95 8/30/2024
2.1.6 92 8/27/2024
2.1.5 85 8/27/2024
2.1.4 115 8/25/2024
2.1.3 124 8/25/2024
2.1.2 259 4/19/2024
2.1.1 107 4/18/2024
2.1.0 158 4/18/2024
2.0.0 146 4/6/2024
1.6.2 222 2/22/2024
1.6.1 230 2/20/2024
1.6.0 302 1/20/2024
1.5.0 489 9/4/2023
1.4.6 673 3/13/2023
1.4.5 644 2/7/2023
1.4.4 692 2/1/2023
1.4.3 637 1/31/2023
1.4.2 809 1/27/2023
1.4.1 676 1/22/2023
1.4.0 731 1/19/2023
1.3.0 958 9/4/2022
1.2.1 668 1/1/2022
1.2.0 783 1/1/2022

add: arange