Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vovandreevik/decomp-solve
https://github.com/vovandreevik/decomp-solve
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vovandreevik/decomp-solve
- Owner: vovandreevik
- Created: 2024-03-22T08:30:25.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-22T08:58:15.000Z (8 months ago)
- Last Synced: 2024-03-22T09:52:20.437Z (8 months ago)
- Language: C++
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DECOMP-SOLVE
The program solves linear systems $Cx_1=d$ and $C^T Cx_2=C^T d$, $n = 4, 6, 8, 10, 12$ with DECOMP & SOLVE.
$C_{ij} = \displaystyle\frac{1}{i + j -1}$, $i, j = \overline{1, n}$
$d_i = \displaystyle\sum_{k=1}^{n} \frac{1}{i + k -1}$, $i = \overline{1, n}$
Compares the conditioning numbers and δ.
$δ = \displaystyle\frac{||x_1 - x_2||}{||x_1||}$
```Forsythe.h``` is a librarian program