Skip to content
Prev 70378 / 398525 Next

Linear system

Jim Gustafsson wrote:

            
>
You already said it yourself ("solve"):


A <- rbind(c(353, 45, 29), c(45, 29, 3), c(29, 3, 4))
solve(A, c(79, 5, 8))
# [1]  0.1784625 -0.1924954  0.8505186

Uwe Ligges