Class

NumCosmoMathDataDist2d

Description [src]

abstract class NumCosmoMath.DataDist2d : NumCosmoMath.Data
{
  /* No available fields */
}

This object is designate to data that is described by a bivariate and arbitrary distribution.

Ancestors

Instance methods

ncm_data_dist2d_get_data

Gets the data NcmMatrix.

ncm_data_dist2d_get_size

Gets the data size.

ncm_data_dist2d_inv_pdf

Generates a random number from the inverse of the pdf.

ncm_data_dist2d_set_size

Sets the data size to np.

Methods inherited from NcmData (29)

Please see NcmData for a full list of methods.

Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Properties

NumCosmoMath.DataDist2d:matrix
No description available.

NumCosmoMath.DataDist2d:n-points
No description available.

Properties inherited from NcmData (5)
NumCosmoMath.Data:bootstrap

The NcmData bootstrap object if any.

NumCosmoMath.Data:desc

Description of the data object.

NumCosmoMath.Data:init
No description available.

NumCosmoMath.Data:long-desc

Description of the data object.

NumCosmoMath.Data:name

Name of the data object.

Signals

Signals inherited from GObject (1)
GObject::notify

The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.

Class structure

struct NumCosmoMathDataDist2dClass {
  gdouble (* dist2d_m2lnL_val) (
    NcmDataDist2d* dist2d,
    NcmMSet* mset,
    gdouble x,
    gdouble y
  );
  void (* inv_pdf) (
    NcmDataDist2d* dist2d,
    NcmMSet* mset,
    gdouble u,
    gdouble v,
    gdouble* x,
    gdouble* y
  );
  void (* set_size) (
    NcmDataDist2d* dist2d,
    guint np
  );
  guint (* get_size) (
    NcmDataDist2d* dist2d
  );
  
}

No description available.

Class members
dist2d_m2lnL_val: gdouble (* dist2d_m2lnL_val) ( NcmDataDist2d* dist2d, NcmMSet* mset, gdouble x, gdouble y )

No description available.

inv_pdf: void (* inv_pdf) ( NcmDataDist2d* dist2d, NcmMSet* mset, gdouble u, gdouble v, gdouble* x, gdouble* y )

No description available.

set_size: void (* set_size) ( NcmDataDist2d* dist2d, guint np )

No description available.

get_size: guint (* get_size) ( NcmDataDist2d* dist2d )

No description available.

Virtual methods

NumCosmoMath.DataDist2dClass.inv_pdf

Generates a random number from the inverse of the pdf.

NumCosmoMath.DataDist2dClass.set_size

Sets the data size to np.