コード例 #1
0
 def _multicomplex2(f, fx, x, h):
     z = Bicomplex(x + 1j * h, h)
     return Bicomplex.__array_wrap__(f(z)).imag12
コード例 #2
0
ファイル: core.py プロジェクト: pbrod/numdifftools
 def _multicomplex2(f, fx, x, h, *args, **kwds):
     z = Bicomplex(x + 1j * h, h)
     return Bicomplex.__array_wrap__(f(z, *args, **kwds)).imag12
コード例 #3
0
ファイル: core.py プロジェクト: kkendzia/numdifftools
 def _multicomplex2(f, fx, x, h):  # @UnusedVariable
     z = Bicomplex(x + 1j * h, h)
     return Bicomplex.__array_wrap__(f(z)).imag12