Adding parallel processing to the matrix class

by Trent Guidry 11. July 2009 05:49
In this post I will modify the previously created matrix class to use parallel processing with the .NET 4.0 class System.Threading.Parallel. [More]

Adding Crout decomposition with partial pivoting to the matrix class

by Trent Guidry 30. June 2009 13:35
In this post I will add the solution of matrix equations using LU decomposition with partial pivoting, and matrix inversion to the matrix class. [More]

Adding addition, subtraction, and multiplication to the matrix class

by Trent Guidry 22. June 2009 14:43
In this post I will add matrix addition, subtraction, multiplication, and scalar multiplication to the matrix class. [More]

Creating the matrix class

by Trent Guidry 20. June 2009 11:36
This post will be about creating a matrix class, cloning it, transposing it, creating an identity matrix, and converting a matrix to and from an array. [More]