Click here to Skip to main content
15,881,757 members
Articles / Programming Languages / C#

Yet Another Math Parser (YAMP)

Rate me:
Please Sign up or sign in to vote.
4.98/5 (54 votes)
30 Sep 2012CPOL21 min read 120.9K   2.6K   93  
Constructing a fast math parser using Reflection to do numerics like Matlab.
using System;
using YAMP;

namespace YAMP.Numerics
{
    /// <summary>
    /// LU Decomposition.
    /// For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n
    /// unit lower triangular matrix L, an n-by-n upper triangular matrix U,
    /// and a permutation vector piv of length m so that A(piv,:) = L*U.
    /// <code>
    /// If m is smaller than n, then L is m-by-m and U is m-by-n.
    /// </code>
    /// The LU decompostion with pivoting always exists, even if the matrix is
    /// singular, so the constructor will never fail.  The primary use of the
    /// LU decomposition is in the solution of square systems of simultaneous
    /// linear equations. This will fail if IsNonSingular() returns false.
    /// </summary>
    public class LUDecomposition : DirectSolver
    {
        #region Members

        /// <summary>
        /// Array for internal storage of decomposition.
        /// </summary>
        double[][] LU;

        /// <summary>
        /// Row and column dimensions, and pivot sign.
        /// </summary>
        int m, n, pivsign;

        /// <summary>
        /// Internal storage of pivot vector.
        /// </summary>
        int[] piv;

        #endregion //  Class variables

        #region Constructor

        /// <summary>
        /// LU Decomposition
        /// </summary>
        /// <param name="A">Rectangular matrix</param>
        /// <returns>Structure to access L, U and piv.</returns>
        public LUDecomposition(MatrixValue A)
        {
            // Use a "left-looking", dot-product, Crout/Doolittle algorithm.
            LU = A.GetRealArray();
            m = A.DimensionY;
            n = A.DimensionX;
            piv = new int[m];

            for (int i = 0; i < m; i++)
                piv[i] = i + 1;
            
            pivsign = 1;
            var LUrowi = new double[0];
            var LUcolj = new double[m];

            // Outer loop.
            for (int j = 0; j < n; j++)
            {
                // Make a copy of the j-th column to localize references.
                for (int i = 0; i < m; i++)
                    LUcolj[i] = LU[i][j];

                // Apply previous transformations.
                for (int i = 0; i < m; i++)
                {
                    LUrowi = LU[i];

                    // Most of the time is spent in the following dot product.
                    var kmax = Math.Min(i, j);
                    var s = 0.0;

                    for (int k = 0; k < kmax; k++)
                        s += LUrowi[k] * LUcolj[k];

                    LUcolj[i] -= s;
                    LUrowi[j] = LUcolj[i];
                }

                // Find pivot and exchange if necessary.
                var p = j;

                for (int i = j + 1; i < m; i++)
                {
                    if (Math.Abs(LUcolj[i]) > Math.Abs(LUcolj[p]))
                        p = i;
                }

                if (p != j)
                {
                    for (int k = 0; k < n; k++)
                    {
                        var t = LU[p][k]; 
                        LU[p][k] = LU[j][k]; 
                        LU[j][k] = t;
                    }
                    
                    var k2 = piv[p];
                    piv[p] = piv[j];
                    piv[j] = k2;
                    pivsign = -pivsign;
                }

                // Compute multipliers.

                if (j < m & LU[j][j] != 0.0)
                {
                    for (int i = j + 1; i < m; i++)
                        LU[i][j] = LU[i][j] / LU[j][j];
                }
            }
        }
        #endregion //  Constructor

        #region Public Properties

        /// <summary>
        /// Is the matrix nonsingular?
        /// </summary>
        /// <returns>true if U, and hence A, is nonsingular.</returns>
        virtual public bool IsNonSingular
        {
            get
            {
                for (int j = 0; j < n; j++)
                {
                    if (LU[j][j] == 0)
                        return false;
                }

                return true;
            }
        }

        /// <summary>
        /// Return lower triangular factor
        /// </summary>
        /// <returns>L</returns>
        virtual public MatrixValue L
        {
            get
            {
                var X = new MatrixValue(m, n);

                for (int i = 1; i <= m; i++)
                {
                    for (int j = 1; j <= n; j++)
                    {
                        if (i > j)
                            X[i, j].Value = LU[i][j];
                        else if (i == j)
                            X[i, j].Value = 1.0;
                        else
                            X[i, j].Value = 0.0;
                    }
                }

                return X;
            }
        }

        /// <summary>
        /// Return upper triangular factor
        /// </summary>
        /// <returns>U</returns>
        virtual public MatrixValue U
        {
            get
            {
                var X = new MatrixValue(n, n);

                for (int i = 1; i <= n; i++)
                {
                    for (int j = 1; j <= n; j++)
                    {
                        if (i <= j)
                            X[i, j].Value = LU[i][j];
                        else
                            X[i, j].Value = 0.0;
                    }
                }

                return X;
            }
        }

        /// <summary>
        /// Return pivot permutation vector
        /// </summary>
        /// <returns>piv</returns>
        virtual public int[] Pivot
        {
            get
            {
                var p = new int[m];

                for (int i = 0; i < m; i++)
                    p[i] = piv[i];
                
                return p;
            }
        }

        /// <summary>
        /// Return pivot permutation vector as a one-dimensional double array
        /// </summary>
        /// <returns>(double) piv</returns>
        virtual public double[] DoublePivot
        {
            get
            {
                var vals = new double[m];

                for (int i = 0; i < m; i++)
                    vals[i] = (double)piv[i];
                
                return vals;
            }
        }

        #endregion //  Public Properties

        #region Public Methods

        /// <summary>
        /// Determinant
        /// </summary>
        /// <returns>det(A)</returns>
        public virtual double Determinant()
        {
            if (m != n)
                throw new MatrixFormatException("square");
            
            var d = (double)pivsign;

            for (int j = 0; j < n; j++)
                d = d * LU[j][j];

            return d;
        }

        /// <summary>
        /// Solve A*X = B
        /// </summary>
        /// <param name="B">A Matrix with as many rows as A and any number of columns.</param>
        /// <returns>X so that L*U*X = B(piv,:)</returns>
        public override MatrixValue Solve(MatrixValue B)
        {
            if (B.DimensionY != m)
                throw new DimensionException(B.DimensionY, m);

            if (!this.IsNonSingular)
                throw new MatrixFormatException("non-singular");

            // Copy right hand side with pivoting
            var nx = B.DimensionX;
            var X = B.SubMatrix(piv, 0, nx).GetRealArray();

            // Solve L*Y = B(piv,:)
            for (int k = 0; k < n; k++)
            {
                for (int i = k + 1; i < n; i++)
                {
                    for (int j = 0; j < nx; j++)
                        X[i][j] -= X[k][j] * LU[i][k];
                }
            }

            // Solve U*X = Y;
            for (int k = n - 1; k >= 0; k--)
            {
                for (int j = 0; j < nx; j++)
                    X[k][j] = X[k][j] / LU[k][k];

                for (int i = 0; i < k; i++)
                {
                    for (int j = 0; j < nx; j++)
                        X[i][j] -= X[k][j] * LU[i][k];
                }
            }

			return new MatrixValue(X, piv.Length, nx);
        }

        #endregion //  Public Methods
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
Germany Germany
Florian lives in Munich, Germany. He started his programming career with Perl. After programming C/C++ for some years he discovered his favorite programming language C#. He did work at Siemens as a programmer until he decided to study Physics.

During his studies he worked as an IT consultant for various companies. After graduating with a PhD in theoretical particle Physics he is working as a senior technical consultant in the field of home automation and IoT.

Florian has been giving lectures in C#, HTML5 with CSS3 and JavaScript, software design, and other topics. He is regularly giving talks at user groups, conferences, and companies. He is actively contributing to open-source projects. Florian is the maintainer of AngleSharp, a completely managed browser engine.

Comments and Discussions