BayesicFitting

Model Fitting and Evidence Calculation

View project on GitHub



class Gauss( Kernel )[source]

Gauss is an unbound Kernel function

  f( x ) = exp( -0.5 * x * x ).

Gauss( ) [source]

Constructor.

  Using
  integral = sqrt( 2 π )
  fwhm = sqrt( 2 log( 2 ) )
  range = inf

result( x ) [source]
Return the result for input values.

Parameters

  • x : array-like
         input values

resultsq( xsq ) [source]
Return the result for squared input values.

Parameters

  • x : array-like
         the squares of the input values

partial( x ) [source]
Return the partial derivative wrt the input values.

Parameters

  • x : array-like
         the input values

isBound( ) [source]

Return False

name( ) [source]

Return the name of the kernel

Methods inherited from Kernel