Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Gaussian Elimination with Complete Pivoting LU

Reference

  • Biswa Nath Datta, Numerical Linear Algebra and Applications, Second Edition

Description

  • Implement Back-substitution for Upper Triangular Matrix
  • Implement Forward-Elimination for Lower Triangular Matrix
  • Solve linear system with Gaussian elimination with Complete Pivoting LU (GECP)

Example

Build Process

# Build
cargo build --release

# Run
cargo run --release --bin solve