LSSTApplications
10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
|
a Covariogram that falls off as the negative exponent of the square of the distance between the points More...
#include <GaussianProcess.h>
Public Member Functions | |
virtual | ~SquaredExpCovariogram () |
SquaredExpCovariogram () | |
void | setEllSquared (double ellSquared) |
set the _ellSquared hyper parameter (the square of the characteristic length scale of the covariogram) More... | |
virtual T | operator() (ndarray::Array< const T, 1, 1 > const &, ndarray::Array< const T, 1, 1 > const &) const |
Actually evaluate the covariogram function relating two points you want to interpolate from. More... | |
![]() | |
virtual | ~Covariogram () |
Covariogram () | |
construct a Covariogram assigning default values to the hyper parameters More... | |
![]() | |
Citizen (const std::type_info &) | |
Citizen (Citizen const &) | |
~Citizen () | |
Citizen & | operator= (Citizen const &) |
std::string | repr () const |
Return a string representation of a Citizen. More... | |
void | markPersistent (void) |
Mark a Citizen as persistent and not destroyed until process end. More... | |
memId | getId () const |
Return the Citizen's ID. More... | |
Private Attributes | |
double | _ellSquared |
Additional Inherited Members | |
![]() | |
enum | { magicSentinel = 0xdeadbeef } |
typedef unsigned long | memId |
Type of the block's ID. More... | |
typedef memId(* | memNewCallback )(const memId cid) |
A function used to register a callback. More... | |
typedef memId(* | memCallback )(const Citizen *ptr) |
![]() | |
static bool | hasBeenCorrupted () |
Check all allocated blocks for corruption. More... | |
static memId | getNextMemId () |
Return the memId of the next object to be allocated. More... | |
static int | init () |
Called once when the memory system is being initialised. More... | |
static int | census (int, memId startingMemId=0) |
How many active Citizens are there? More... | |
static void | census (std::ostream &stream, memId startingMemId=0) |
Print a list of all active Citizens to stream, sorted by ID. More... | |
static const std::vector < const Citizen * > * | census () |
Return a (newly allocated) std::vector of active Citizens sorted by ID. More... | |
static memId | setNewCallbackId (memId id) |
Call the NewCallback when block is allocated. More... | |
static memId | setDeleteCallbackId (memId id) |
Call the current DeleteCallback when block is deleted. More... | |
static memNewCallback | setNewCallback (memNewCallback func) |
Set the NewCallback function. More... | |
static memCallback | setDeleteCallback (memCallback func) |
Set the DeleteCallback function. More... | |
static memCallback | setCorruptionCallback (memCallback func) |
Set the CorruptionCallback function. More... | |
a Covariogram that falls off as the negative exponent of the square of the distance between the points
Contains one hyper parameter (_ellSquared) encoding the square of the characteristic length scale of the covariogram
Definition at line 168 of file GaussianProcess.h.
|
virtual |
Definition at line 1833 of file GaussianProcess.cc.
|
explicit |
Definition at line 1836 of file GaussianProcess.cc.
|
virtual |
Actually evaluate the covariogram function relating two points you want to interpolate from.
[in] | p1 | the first point |
[in] | p2 | the second point |
Reimplemented from lsst.afw.math::Covariogram< T >.
Definition at line 1848 of file GaussianProcess.cc.
void lsst.afw.math::SquaredExpCovariogram< T >::setEllSquared | ( | double | ellSquared | ) |
set the _ellSquared hyper parameter (the square of the characteristic length scale of the covariogram)
Definition at line 1842 of file GaussianProcess.cc.
|
private |
Definition at line 186 of file GaussianProcess.h.