[Numpy-discussion] Shouldn't singular_value_decomposition respect full_matrices?

Zachary Pincus zpincus at stanford.edu
Tue Feb 21 19:15:02 EST 2006


numpy.linglg.singular_value_decomposition is defined as follows:

def singular_value_decomposition(A, full_matrices=0):
     return svd(A, 0)

Shouldn't that last line be
     return svd(A, full_matrices)

Zach




More information about the NumPy-Discussion mailing list