Closed d-ming closed 7 years ago
calcDim() as a function name is misleading because the function is actually calculating the dimension of the AR and not the rank.
calcDim()
For example, if A = numpy.[[1, 0, 0]].T, then calcDim(A) would give zero, whereas the actual dimension of A is one (rank(A) = 1).
A = numpy.[[1, 0, 0]].T
calcDim(A)
rank(A)
calcDim()
as a function name is misleading because the function is actually calculating the dimension of the AR and not the rank.For example, if
A = numpy.[[1, 0, 0]].T
, thencalcDim(A)
would give zero, whereas the actual dimension of A is one (rank(A)
= 1).