Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
examples_of_use.m | 2018-09-24 | 882 Bytes | |
readme.md | 2018-09-24 | 505 Bytes | |
remonte.m | 2018-09-24 | 841 Bytes | |
descenso.m | 2018-09-24 | 837 Bytes | |
Totals: 4 Items | 3.1 kB | 0 |
MNP Functions
[EN] This folder contains files:
- remonte.m
- descenso.m
- examples_of_use.m
These files are used to compute matrix numerical methods.
remonte.m
x = remonte(A,b)
Solves an upper triangular system of linear equations (SLE) using backward substitution
descenso.m
x = descenso(A,b)
Solves a lower triangular system of linear equations (SLE) using downward substitution
examples_of_use.m
Usage examples of all funtions.