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
curve_fitting=l2a_bands.fit_curve(
parameters=[1,1,1], # Initial guess of the parametersdimension="t", # Fit the function along the temporal dimensionfunction=l2a_bands._get_callback(fit_function, parent_parameters=["data","parameters"])
)
it's unfortunate that you have to call a private method l2a_bands._get_callback like that, we should make sure that you can just do function=fit_function directly
The text was updated successfully, but these errors were encountered:
soxofaan
changed the title
Proper callable support in curve_fit and related
Proper callable support in fit_curve and related
Sep 6, 2021
from openEOPlatform/documentation#10
it's unfortunate that you have to call a private method
l2a_bands._get_callback
like that, we should make sure that you can just dofunction=fit_function
directlyThe text was updated successfully, but these errors were encountered: