Click here to Skip to main content
15,867,141 members
Articles / Programming Languages / C#
Article

DotNetMatrix: Simple Matrix Library for .NET

Rate me:
Please Sign up or sign in to vote.
4.94/5 (62 votes)
12 Jan 2004Public Domain4 min read 463.6K   12.2K   123   114
A set of C# classes providing basic matrix operations

Introduction

The classes provided with this article give you a basic linear algebra package for .NET. It provides user-level C# classes for constructing and manipulating real, dense matrices. It is meant to provide sufficient functionality for routine problems, packaged in a way that is natural and understandable to non-experts. That said, it is simply a port of a public domain Java matrix library, called JAMA. Check the JAMA web site for more information.

Background

Currently, I work for a small GIS company here in Japan developing GIS components for application developers. Coordinate Transformation and therefore Affine Transformation is a very basic part of our development efforts. Recently, I was assigned a task of designing and implementing a new GIS system for the .NET framework with the ability to easily port to Java and other frameworks. I decided to make maximum use of matrix-based affine transformation, which is also a requirement of the OpenGIS Coordinate Transformation Specifications.

Then, I discovered that the Matrix class provided as part of the GDI+ in the .NET implements the affine transformations in a manner different from standard specifications. In short, while the standard 2D Coordinate System Affine Transformation Matrix is define as

The matrix defined by GDI+ is

The effect is that most affine transformations with the GDI+ Matrix class will not conform to standard or specifications. For instance, by standard (and mathematically) anti-clockwise (or counter-clockwise) rotations are considered positive but must be negative when using the GDI+ classes.
To solve this problem, I decided to implement a standard affine transformation matrix and found this small Java general matrix library - JAMA. The classes presented with this article are ported from the JAMA with .NET specific improvements like operator overloading etc.

In a different article, I will discuss and present my affine transformation matrix, which should give the same effect (same properties and methods as the GDI+ Matrix class). The rest of the article is extracted from the JAMA documentation, and I will refer to the library as DotNetMatrix (the namespace).

Capabilities

DotNetMatrix is comprised of six C# classes: GeneralMatrix, CholeskyDecomposition, LUDecomposition, QRDecomposition, SingularValueDecomposition and EigenvalueDecomposition.

The GeneralMatrix class provides the fundamental operations of numerical linear algebra. Various constructors create Matrices from two dimensional arrays of double precision floating point numbers. Various gets and sets (properties) provide access to submatrices and matrix elements. The basic arithmetic operations include matrix addition and multiplication, matrix norms and selected element-by-element array operations. A convenient matrix print method is also included.

Five fundamental matrix decompositions, which consist of pairs or triples of matrices, permutation vectors, and the like, produce results in five decomposition classes. These decompositions are accessed by the GeneralMatrix class to compute solutions of simultaneous linear equations, determinants, inverses and other matrix functions. The five decompositions are

  • Cholesky Decomposition of symmetric, positive definite matrices
  • LU Decomposition (Gaussian elimination) of rectangular matrices
  • QR Decomposition of rectangular matrices
  • Eigenvalue Decomposition of both symmetric and nonsymmetric square matrices
  • Singular Value Decomposition of rectangular matrices
The DotNetMatrix deals only with real matrices, there is not support for complex matrices.

The design of DotNetMatrix represents a compromise between the need for pure and elegant object-oriented design and the need to enable high performance implementations.

Summary of DotNetMatrix Capabilities
Object Manipulationconstructors
set elements
get elements
copy
clone
Elementary Operationsaddition
subtraction
multiplication
scalar multiplication
element-wise multiplication
element-wise division
unary minus
transpose
norm
DecompositionsCholesky
LU
QR
SVD
symmetric eigenvalue
nonsymmetric eigenvalue
Equation Solutionnonsingular systems
least squares
Derived Quantitiescondition number
determinant
rank
inverse
pseudoinverse

Using the Code

The following simple example solves a 3x3 linear system Ax=b and computes the norm of the residual.

C#
double[][] array = {{1.,2.,3},{4.,5.,6.},{7.,8.,10.}};
GeneralMatrix A = new GeneralMatrix(array);
GeneralMatrix b = GeneralMatrix.Random(3,1);
GeneralMatrix x = A.Solve(b);
GeneralMatrix Residual = A.Multiply(x).Subtract(b);
double rnorm = Residual.NormInf();

Points of Interest

There is an empty ISerializable interface implementation in all the classes. I do not know if serialization support is really needed, I could complete the implementations if needed.

License

This is basically a port of public domain codes, so the result is in the public domain.

History

  • Jan 10, 2004 - initial release

Conclusion

Matrices are valuable mathematical tools which can be used to solve very complex problems, and coordinate transformation is no exception. The classes presented here can help you implement your own affine transformation classes to get a bit far than the .NET framework offers you. Also, since the classes are completely C# unlike the GDI+ classes, which are wrappers for a COM implementation, there is no interop overhead.

In my next article, I will present an affine transformation matrix class based on this library. Suggestions for improvements are welcomed.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Engineer
Japan Japan
Systems Engineer

Comments and Discussions

 
GeneralRe: QR Decomposition - Possible Bug Pin
LorenHello28-Oct-15 1:50
LorenHello28-Oct-15 1:50 
GeneralBad Matrix class Pin
Kuryn6-Aug-08 17:35
Kuryn6-Aug-08 17:35 
GeneralRe: Bad Matrix class Pin
Paul Selormey6-Aug-08 18:03
Paul Selormey6-Aug-08 18:03 
GeneralRe: Bad Matrix class Pin
Kuryn9-Aug-08 5:24
Kuryn9-Aug-08 5:24 
GeneralPseudoinverse Pin
FueledByIgnorance7-Jul-08 21:32
FueledByIgnorance7-Jul-08 21:32 
GeneralRe: Pseudoinverse Pin
Paul Selormey10-Jul-08 6:34
Paul Selormey10-Jul-08 6:34 
GeneralBug in Singular Value Decomposition Pin
ajwo19-Nov-07 8:48
ajwo19-Nov-07 8:48 
GeneralRe: Bug in Singular Value Decomposition Pin
Paul Selormey19-Nov-07 10:02
Paul Selormey19-Nov-07 10:02 
GeneralRe: Bug in Singular Value Decomposition Pin
iotha3-Dec-07 20:42
iotha3-Dec-07 20:42 
QuestionRe: Bug in Singular Value Decomposition Pin
celisdelorena27-Jun-08 4:42
celisdelorena27-Jun-08 4:42 
GeneralRe: Bug in Singular Value Decomposition when solving under-determined equation systems [modified] Pin
raz0rblade29-Aug-08 3:52
raz0rblade29-Aug-08 3:52 
GeneralRe: Bug in Singular Value Decomposition Pin
mbreidt9-Apr-09 4:16
mbreidt9-Apr-09 4:16 
GeneralRe: Bug in Singular Value Decomposition Pin
Hassan Alrehamy1-Jan-16 8:56
Hassan Alrehamy1-Jan-16 8:56 
GeneralProblem with eigenvalues Pin
Cukaricn30-Oct-07 6:07
Cukaricn30-Oct-07 6:07 
GeneralKarhunen-Loève Pin
sergiomad25-Jun-07 14:32
sergiomad25-Jun-07 14:32 
GeneralRe: Karhunen-Loève Pin
Paul Selormey25-Jun-07 17:37
Paul Selormey25-Jun-07 17:37 
QuestionIs it a bug in the constructor of GeneralMatrix? Pin
danielmark23-May-07 10:09
danielmark23-May-07 10:09 
AnswerRe: Is it a bug in the constructor of GeneralMatrix? Pin
Paul Selormey25-Jun-07 18:16
Paul Selormey25-Jun-07 18:16 
QuestionAny sample code for a newbie Pin
tgpritchard28-Apr-07 14:00
tgpritchard28-Apr-07 14:00 
AnswerRe: Any sample code for a newbie Pin
lukner20-Jun-07 12:46
lukner20-Jun-07 12:46 
GeneralRe: Any sample code for a newbie Pin
Paul Selormey25-Jun-07 18:27
Paul Selormey25-Jun-07 18:27 
GeneralRe: Any sample code for a newbie Pin
lukner26-Jun-07 10:06
lukner26-Jun-07 10:06 
GeneralDynamic Size Pin
Alexis Blaze28-Feb-07 7:03
Alexis Blaze28-Feb-07 7:03 
GeneralRe: Dynamic Size Pin
Paul Selormey25-Jun-07 19:32
Paul Selormey25-Jun-07 19:32 
GeneralRe: Dynamic Size Pin
lukner26-Jun-07 2:21
lukner26-Jun-07 2:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.