项目作者: Ramonrune

项目描述 :
Gauss-Jordan Elimination
高级语言: C++
项目地址: git://github.com/Ramonrune/gauss-jordan-elimination.git
创建时间: 2018-02-16T22:26:26Z
项目社区:https://github.com/Ramonrune/gauss-jordan-elimination

开源协议:

下载


Linear programming - Gauss jordan elimination

Introduction

Gaussian elimination is an algorithm for solving systems of linear equations. It is usually understood as a sequence of operations performed on the corresponding matrix of coefficients. This method can also be used to find the rank of a matrix, to calculate the determinant of a matrix, and to calculate the inverse of an invertible square matrix. Wiki references.

Example