mxludlower
Syntax:
Return
Range
mxludlower
(
Range
matrix1)
Description:
Computes the lower triangular factor of matrix LU decomposition of
matrix1
and places it at the current cell.
Examples:
($a4) = mxludlower($a1:$c3)
Before:
A
B
C
D
1
1
4
7
2
2
5
8
3
3
6
20
4
5
6
After:
A
B
C
D
1
1
4
7
2
2
5
8
3
3
6
20
4
1
0
0
5
0.333333333333333
1
0
6
0.666666666666667
0.5
1
($a2) = mxludlower($a1:$d4)