Question1 (50
pts): LU Factorization Code for Square
Matrices without Row Exchange
I want you to write an LU decomposition program in Matlab for
square matrices (n×n) where row exchange is not necessary (that is
no pivot is 0). Here are some hints and requirements for your
matlab code.
You should write comments for every procedure. Make sure that
your code is well indexed (see below). Otherwise it will be hard
for me to follow and bad programming practice for...