Skip to content

Commit

Permalink
Updated function input parameters, function header, and documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
tamaskis committed Aug 29, 2021
1 parent e02a785 commit a48dd96
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
Binary file modified EXAMPLES.mlx
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ Solves the linear system <img src="https://latex.codecogs.com/svg.latex?\inline&

## Examples and Additional Documentation

- See "EXAMPLES.mlx" or the "Examples" tab on the File Exchange page for examples.
- See [Gaussian Elimination.pdf](https://tamaskis.github.io/documentation/Gaussian%20Elimination.pdf) (also included with download) for additional documentation.
- See "EXAMPLES.mlx" or the "Examples" tab on the File Exchange page for examples.
- See [Gaussian_Elimination.pdf](https://tamaskis.github.io/documentation/Gaussian_Elimination.pdf) (also included with download) for additional documentation.
15 changes: 9 additions & 6 deletions gaussian_elimination.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,28 @@
% See also \, mldivide, /, mrdivide, inv, tridiagonal.
%
% Copyright © 2021 Tamas Kis
% Website: tamaskis.github.io
% Last Update: 2021-08-28
% Website: https://tamaskis.github.io
% Contact: tamas.a.kis@outlook.com
% Last Update: 2021-07-25
%
% TECHNICAL DOCUMENTATION:
% https://tamaskis.github.io/documentation/Gaussian_Elimination.pdf
%
% REFERENCES:
% [1] https://tamaskis.github.io/documentation/Gaussian%20Elimination.pdf
% [1] Burden and Faires, "Numerical Analysis", 9th Ed. (pp. 374-375)
%
%--------------------------------------------------------------------------
%
% ------
% INPUT:
% ------
% A - (n×n) matrix
% b - (n×1) vector
% A - (n×n double) matrix
% b - (n×1 double) vector
%
% -------
% OUTPUT:
% -------
% x - (n×1) solution of the linear system Ax=b
% x - (n×1 double) solution of the linear system Ax=b
%
% -----
% NOTE:
Expand Down

0 comments on commit a48dd96

Please sign in to comment.