Closed jzwar closed 1 year ago
This has been implemented many times in different spots, Leading to redundant code.
Create basis function matrices directly using either scipy or numpy depending on availability.
scipy
numpy
spline = some_spline() matrix = splinepy.utils.data.make_matrix( *spline.basis_function_matrix(queries), spline.cps.shape[0] ) assert np.allclose(matrix @ spline.cps, spline.evaluate(queries))
This has been implemented many times in different spots, Leading to redundant code.
Overview
Create basis function matrices directly using either
scipy
ornumpy
depending on availability.Addressed issues
Showcase
Checklists