...

/

Challenge: LU Matrix Factorization

Challenge: LU Matrix Factorization

Solve this challenge on LU matrix factorization in R.

We'll cover the following...

Exercise

Write the R code required to LU factorize this square matrix:

A=[023501142]A = \begin{bmatrix} 0 & 2 & 3 \\ 5 & 0 & 1 \\ 1 & 4 & -2 \\ \end{bmatrix} ...