2721548d1f4b6db9008107dca6dbe1b521f51c06,pyriemann/utils/base.py,,powm,#Any#Any#,87

Before Change



    
    D, V = scipy.linalg.eigh(Ci)
    D = numpy.matrix(numpy.diag(D**alpha))
    V = numpy.matrix(V)
    Out = numpy.matrix(V * D * V.T)
    return Out

After Change



    
    D, V = scipy.linalg.eigh(Ci)
    D = numpy.diag(D**alpha)
    Out = numpy.dot(numpy.dot(V, D), V.T)
    return Out

Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 10

Instances


Project Name: alexandrebarachant/pyRiemann
Commit Name: 2721548d1f4b6db9008107dca6dbe1b521f51c06
Time: 2016-05-10
Author: alexandre.barachant@gmail.com
File Name: pyriemann/utils/base.py
Class Name:
Method Name: powm


Project Name: alexandrebarachant/pyRiemann
Commit Name: 2721548d1f4b6db9008107dca6dbe1b521f51c06
Time: 2016-05-10
Author: alexandre.barachant@gmail.com
File Name: pyriemann/utils/base.py
Class Name:
Method Name: powm


Project Name: alexandrebarachant/pyRiemann
Commit Name: 2721548d1f4b6db9008107dca6dbe1b521f51c06
Time: 2016-05-10
Author: alexandre.barachant@gmail.com
File Name: pyriemann/utils/base.py
Class Name:
Method Name: invsqrtm


Project Name: alexandrebarachant/pyRiemann
Commit Name: 2721548d1f4b6db9008107dca6dbe1b521f51c06
Time: 2016-05-10
Author: alexandre.barachant@gmail.com
File Name: pyriemann/utils/base.py
Class Name:
Method Name: sqrtm


Project Name: alexandrebarachant/pyRiemann
Commit Name: 2721548d1f4b6db9008107dca6dbe1b521f51c06
Time: 2016-05-10
Author: alexandre.barachant@gmail.com
File Name: pyriemann/utils/base.py
Class Name:
Method Name: expm