4I am currently trying to fit a lot of data to a sine function. In the case where I only have one set of data (1D array), scipy.optimize.curve_fit()
works fine. However it does not permit a higher dimensional data input if the function itself is only one dimensional as far as i can see. I don't want to iterate over the array using for loops as that works incredibly slow in python.
My code so far should look similar to this:
from scipy import optimize
import numpy as np
def f(x,p1,p2,p3,p4): return p1 + p2*np.sin(2*np.pi*p3*x + p4) #fit function
def fit(data,guess):
n = data.shape[0]
leng = np.arange(n)
param, pcov = optimize.curve_fit(f,leng,data,guess)
return param, pcov
where data is a threedimensional array (shape=(x,y,z)
) and I would like to fit each line data[:,a,b]
to the function with param
being a (4,y,z)
shaped array as output.
Of course, for multidimensional data this results in a
ValueError: operands could not be broadcast together with shapes (2100,2100) (5)
Maybe there is an easy solution to this but I am not sure how to do it. Any suggestions?
Searching for an answer to my question proofed quite difficult since most topics with those keywords relate to the fitting of higher dimensional functions.