The document describes implementing L-U decomposition without pivoting to solve systems of linear equations. It includes:
1) An objective to write an M-file that performs L-U decomposition without pivoting for solving systems of linear equations, and to write both script and function files.
2) An explanation that L-U decomposition decomposes a matrix into lower and upper triangular matrices, making systems with triangular matrices easier to solve.
3) Code examples of a script and function file that perform L-U decomposition on a sample matrix without pivoting.