https://github.com/vovandreevik/decomp-solve
The program solves linear systems with DECOMP & SOLVE.
https://github.com/vovandreevik/decomp-solve
cpp decomp solve
Last synced: 11 months ago
JSON representation
The program solves linear systems with DECOMP & SOLVE.
- Host: GitHub
- URL: https://github.com/vovandreevik/decomp-solve
- Owner: vovandreevik
- Created: 2024-03-22T08:30:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-22T08:58:15.000Z (over 2 years ago)
- Last Synced: 2025-02-13T14:49:44.056Z (over 1 year ago)
- Topics: cpp, decomp, solve
- Language: C++
- Homepage:
- Size: 15.6 KB
- Stars: 1
- 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