MatrixLibrary | A matrix library written in C | Math library

 by   YanjieHe C# Version: Current License: No License

kandi X-RAY | MatrixLibrary Summary

kandi X-RAY | MatrixLibrary Summary

MatrixLibrary is a C# library typically used in Utilities, Math applications. MatrixLibrary has no bugs, it has no vulnerabilities and it has low support. You can download it from GitHub.

A matrix library written in C#
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              MatrixLibrary has a low active ecosystem.
              It has 56 star(s) with 20 fork(s). There are 4 watchers for this library.
              OutlinedDot
              It had no major release in the last 6 months.
              There are 1 open issues and 0 have been closed. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of MatrixLibrary is current.

            kandi-Quality Quality

              MatrixLibrary has 0 bugs and 0 code smells.

            kandi-Security Security

              MatrixLibrary has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              MatrixLibrary code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              MatrixLibrary does not have a standard license declared.
              Check the repository for any license declaration and review the terms closely.
              OutlinedDot
              Without a license, all rights are reserved, and you cannot use the library in your applications.

            kandi-Reuse Reuse

              MatrixLibrary releases are not available. You will need to build from source code and install.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of MatrixLibrary
            Get all kandi verified functions for this library.

            MatrixLibrary Key Features

            No Key Features are available at this moment for MatrixLibrary.

            MatrixLibrary Examples and Code Snippets

            No Code Snippets are available at this moment for MatrixLibrary.

            Community Discussions

            Trending Discussions on MatrixLibrary

            QUESTION

            Gaussian elimination without result for acceleration
            Asked 2019-Mar-31 at 09:18

            Good day,

            I'm working on a C library (for myself, code: https://github.com/BattlestarSC/matrixLibrary.git) to handle matrix functions. This is mostly a learning/practice activity. One of my challenges is to take the determinant of a matrix efficiently. As my current attempts have failed, I wanted to take a different approach. I was reading though this method from MIT docs: http://web.mit.edu/18.06/www/Spring17/Determinants.pdf and it made a lot of sense. The issue I'm having is how to get to said point. As the Gaussian elimination method is good for multi-variable systems of equations, my matricies are not built from equations, and therefor are not part of a system. As in, each equation has no set result and does not fit into the form from this paper here:https://math.oregonstate.edu/home/programs/undergrad/CalculusQuestStudyGuides/vcalc/gauss/gauss.html

            From this point, I'm at a loss as far as how to proceed with this method.

            It makes a lot of sense to take the pivot point from each set of equations as described in the MIT paper, but how should I set up my matricies to make said result valid?

            ...

            ANSWER

            Answered 2019-Mar-30 at 20:52

            When you perform a Gaussian elimination, you swap rows and repeatedly subtract a multiple of one row from another to produce an upper triangular form.

            When you do this on a system of equations or an "augmented matrix", you do not use any information from the result column. The decisions about which rows to swap and which to subtract with what multiplier would be exactly the same no matter what numbers are in the result column.

            Because the "result column" is not used, you can perform the same procedure on a normal square matrix. Since the operations don't change the determinant (if you negate one row whenever you swap), you end up with an upper triangular matrix with the same det as the original.

            The MIT author calls a function lu to do this in the example near the start. This does L-U decomposition on the matrix, which returns the Gaussian-eliminated matrix in the 'U' part: https://en.wikipedia.org/wiki/LU_decomposition.

            L-U decomposition is pretty cool. It's like doing Gaussian elimination to solve all systems with the same "matrix part" all at once, which again you can do because the process doesn't need to see the result column at all.

            Starting with a matrix M, you get L and U such that LU = M. That means, if you want to solve:

            Mx = y

            ... where (x an y are column vectors), you have:

            LUx = y

            Solve Lv=y, which is easy (just substitution) because L is lower-triangular. Then you have:

            Ux = v

            ... which is easy to solve because U is upper-triangular.

            Source https://stackoverflow.com/questions/55434303

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install MatrixLibrary

            You can download it from GitHub.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/YanjieHe/MatrixLibrary.git

          • CLI

            gh repo clone YanjieHe/MatrixLibrary

          • sshUrl

            git@github.com:YanjieHe/MatrixLibrary.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link