- #1
Jes1x1
- 13
- 0
Dear folks!
Please help me this problem.
I want to calculate inverse of lower triangular matrix in a fastest way.
I use Mathematica and function LinearSolve. It did well.
But because the matrix is lower triangular matrix. It is very special. So, I want to make a function called NewLinearSolve which operate like LinearSolve but faster because the NewLinearSolve only focuses on the characteristics of Lower Triangular Matrix, that means it is only focus on calculating elements in the lower part of matrix.
I have tried Forward/Back Substitution algorithm but it is very slow comparing to the function LinearSolve.
I don't know why the function LinearSolve is faster than Forward/Back Substitution.
Please help me
Thanks very much
Sincerely yours
Please help me this problem.
I want to calculate inverse of lower triangular matrix in a fastest way.
I use Mathematica and function LinearSolve. It did well.
But because the matrix is lower triangular matrix. It is very special. So, I want to make a function called NewLinearSolve which operate like LinearSolve but faster because the NewLinearSolve only focuses on the characteristics of Lower Triangular Matrix, that means it is only focus on calculating elements in the lower part of matrix.
I have tried Forward/Back Substitution algorithm but it is very slow comparing to the function LinearSolve.
I don't know why the function LinearSolve is faster than Forward/Back Substitution.
Please help me
Thanks very much
Sincerely yours