What is the computational complexity of the Gram-Schmidt orthogonalization algorithm?
Suppose a matrix of m
rows and k
columns, how many operations are required to compute the orthogonalization?
If possible I would like to have the exact number of multiplications and additions.
EDIT:
It seems to me that the total number of operations (multiplication + additions) is 3/2k^2m + 3/2mk +k^2/2 +k/2
.
I would like to know if this is correct and if there is a quicker version.