QuickStart Samples
QuickStart Samples
To get you started right away with creating your own numerical applications using Numerics.NET, we are providing these QuickStart Samples. See our Sample Applications page for some real-life applications.
Vectors
Project | Description | View source | |
---|---|---|---|
BasicVectors | Illustrates basic vector operations using the Vector class. | C# | VB.NET |
VectorOperations | Illustrates operations on vectors: accessing components, arithmetic operations, norms. | C# | VB.NET |
Matrices
Project | Description | View source | |
---|---|---|---|
BasicMatrices | Illustrates basic matrix operations using the GeneralMatrix class. | C# | VB.NET |
MatrixVectorOperations | Illustrates operations on matrices and vectors. | C# | VB.NET |
AccessingMatrixComponents | Illustrates different ways to access the components of a matrix, including iterating through the rows and columns of a matrix and working with submatrices. | C# | VB.NET |
TriangularMatrices | Illustrates using the TriangularMatrix class working with triangular matrices, solving triangular systems, and more. | C# | VB.NET |
SymmetricMatrices Updated! |
Illustrates the use of the SymmetricMatrix class for working with symmetric matrices. | C# | VB.NET |
Solving Equations and Least Squares
Project | Description | View source | |
---|---|---|---|
LinearEquations | Illustrates solving systems of simultaneous linear equations using classes in the Extreme.Mathematics.LinearAlgebra namespace. | C# | VB.NET |
StructuredLinearEquations | Illustrates solving systems of simultaneous linear equations with special structure using classes in the Extreme.Mathematics.LinearAlgebra namespace. | C# | VB.NET |
MatrixDecompositions Updated! |
Illustrates matrix decompositions (LU, QR, and Cholesky decomposition) using classes in the Extreme.Mathematics.LinearAlgebra namespace. | C# | VB.NET |
LeastSquares | Illustrates solving linear least squares problems using classes in the Extreme.Mathematics.LinearAlgebra namespace. | C# | VB.NET |