You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replacing .eval with __call__() would make the API cleaner.
This applies to basis functions as well as splines.
Examples:
Instead of basis_function.eval(t, derivative=1) one could call basis_function(t, derivative=1) directly.
The same applies to splines: spline.eval(t) could be replaced by spline(t).
The text was updated successfully, but these errors were encountered:
Replacing
.eval
with__call__()
would make the API cleaner.This applies to basis functions as well as splines.
Examples:
Instead of
basis_function.eval(t, derivative=1)
one could callbasis_function(t, derivative=1)
directly.The same applies to splines:
spline.eval(t)
could be replaced byspline(t)
.The text was updated successfully, but these errors were encountered: