Skip to content

Latest commit

 

History

History
73 lines (54 loc) · 3.54 KB

File metadata and controls

73 lines (54 loc) · 3.54 KB




class Biweight( Kernel )[source]

Biweight is a Kernel function between [-1,1]; it is 0 elsewhere.

  K( x ) = ( 1-x2 )2 if |x| < 1 else 0

Author: Do Kester

Biweight( ) [source]

Constructor.

Using
     integral = 16.0/15.0
     fwhm = 1.0823922

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

Parameters

  • x : array-like
         input values

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

Parameters

  • x : array-like
         squared input values

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

Parameters

  • x : array-like
         the input values

isBound( ) [source]

Return True

name( ) [source]

Return the name of the kernel

Methods inherited from Kernel