Skip to content

vanderkorn/math

Repository files navigation

It is the program for Mathematical decisions (Matrix computations)
Only for home use!

Matrix: double and generic type.

Large number of matrix calculations

Example:

//Rank, determinant of matrix
var matrix = new Matrix
(
new double[,]
{
{1,2,0},
{4,6,0},
{7,3,0}
}
);
ulong rank = matrix.Rank();// Rank of matrix
double det = matrix.Det();//Determinant of matrix

About

Vanderkorn Mathematical Decisions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages