def execute(params, x): x = np.imag(x) + 1j * np.real(x) A = sfft.execute(params=params, x=x) B = np.imag(A) + 1j * np.real(A) return B
def execute_sfft(self): # todo do something with the result sfft.execute(params=self.params)