Coder Social home page Coder Social logo

gauss-jordan's Introduction

Gauss-Jordan and Recursive Laplace Methodologies
Evan Perry Grove, 2017

This repository contains some matrix algorithms. Everything here is in C++,
compiled using g++ on Kubuntu 16.04.

Contents:
./
    rref_approx.cpp   returns the row echelon form (REF) and the reduced
        row echelon Form (RREF) of an augmented matrix specified by user 
        inputs using Gauss-Jordan elimination. Also shows the exact steps it 
        took to reach the results.
        
    determinant.cpp   finds the determinant of the inputted matrix using a
        recursive form of the Laplace method. Uses a self-referencing command
        in order to recursively dissect any given matrix into smaller parts.
    
    
Known Issues:
    RESOLVED 2/5/2017: rref_approx.cpp: If any of the diagonal elements (1,1)
        thru (n-1,n-1) etc are equal to zero, the correct REF and RREF forms
        are not always returned.
        SOLUTION: Before going into the elimination algorithms, if a row has
            a zero where we don't want it to have a zero, switch that row with
            another one. Keep doing that until there's nonzeros wherever they
            are needed. Not a pretty solution, but programatically very simple.

gauss-jordan's People

Contributors

ryukoposting avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.