2562f136420d61d3a1c9861876ebc6028125a160,scipy/linalg/_interpolative_backend.py,,idzp_id,#Any#Any#,933

Before Change


      Interpolation coefficients.
    :rtype: :class:`numpy.ndarray`
    
    A = np.array(A, copy=True, dtype="complex128", order="F")
    k, idx, rnorms = _id.idzp_id(eps, A)
    n = A.shape[1]
    A = A.T.reshape(A.size)
    proj = A[:k*(n-k)].reshape((k, n-k), order="F")
    return k, idx, proj

def idzr_id(A, k):

After Change


        Interpolation coefficients.
    :rtype: :class:`numpy.ndarray`
    
    A = np.asfortranarray(A)
    k, idx, rnorms = _id.idzp_id(eps, A)
    n = A.shape[1]
    proj = A.T.ravel()[:k*(n-k)].reshape((k, n-k), order="F")
    return k, idx, proj

def idzr_id(A, k):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 6

Instances


Project Name: scipy/scipy
Commit Name: 2562f136420d61d3a1c9861876ebc6028125a160
Time: 2013-07-04
Author: inform@tiker.net
File Name: scipy/linalg/_interpolative_backend.py
Class Name:
Method Name: idzp_id


Project Name: scipy/scipy
Commit Name: 2562f136420d61d3a1c9861876ebc6028125a160
Time: 2013-07-04
Author: inform@tiker.net
File Name: scipy/linalg/_interpolative_backend.py
Class Name:
Method Name: idzr_id


Project Name: scipy/scipy
Commit Name: 2562f136420d61d3a1c9861876ebc6028125a160
Time: 2013-07-04
Author: inform@tiker.net
File Name: scipy/linalg/_interpolative_backend.py
Class Name:
Method Name: iddr_id


Project Name: scipy/scipy
Commit Name: 2562f136420d61d3a1c9861876ebc6028125a160
Time: 2013-07-04
Author: inform@tiker.net
File Name: scipy/linalg/_interpolative_backend.py
Class Name:
Method Name: iddp_id