0131d72f0f7a5c13f00961aea054094b2b78f071,scipy/interpolate/fitpack.py,,spalde,#Any#Any#,484

Before Change


        t, c, k = tck

        // FITPACK expects the interpolation axis to be last, so roll it over
        sh = tuple(range(c.ndim))
        c = c.transpose(sh[1:] + (0,))
        res = _impl.spalde(x, (t, c, k))

        // _impl.spalde *appends* the axes: (...) --> (..., x.size, k+1)

After Change



    
    if isinstance(tck, BSpline):
        raise TypeError("spalde does not accept BSpline instances.")
    else:
        return _impl.spalde(x, tck)

Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: scipy/scipy
Commit Name: 0131d72f0f7a5c13f00961aea054094b2b78f071
Time: 2016-10-12
Author: evgeny.burovskiy@gmail.com
File Name: scipy/interpolate/fitpack.py
Class Name:
Method Name: spalde


Project Name: dit/dit
Commit Name: ec37ae1150e707e48ffb3cb45c4a1f3d3a166914
Time: 2013-02-25
Author: chebee7i@gmail.com
File Name: dit/distconst.py
Class Name:
Method Name: uniform_joint_distribution


Project Name: tyarkoni/pliers
Commit Name: 005968dcfbd2a8f70d8ea3957c8abba60a12492d
Time: 2018-05-15
Author: quinten.mcnamara@gmail.com
File Name: pliers/filters/video.py
Class Name: FrameSamplingFilter
Method Name: _filter