Ocean
|
This class implements the abstract data object which will be specialized for both data modes toggled by tUseIndices. More...
#include <ClusteringKMeans.h>
Public Types | |
typedef StaticBuffer< T, tDimension > | Observation |
Definition of an observation object. | |
typedef size_t | DataIndex |
Definition of an index that addresses one specific observation element in the data object that stores all observations. | |
typedef std::vector< DataIndex > | DataIndices |
Definition of a vector holding indices to the data object. | |
typedef StaticBuffer< T, tDimension > | Observation |
Definition of an observation object. | |
typedef size_t | DataIndex |
Definition of an index that addresses one specific observation element in the data object that stores all observations. | |
typedef std::vector< DataIndex > | DataIndices |
Definition of a vector holding indices to the data object. | |
Public Member Functions | |
Data ()=default | |
Creates a new empty data object. | |
Data (const Observation *observations, const size_t numberObservations, const bool copyObservations=false) | |
Creates a new data object by observations lying in a joined memory block as array. | |
Data (Data< T, tDimension > &&data) noexcept | |
Move constructor for an data object. | |
const Observation & | observation (const DataIndex &dataIndex) const |
Returns one specific observation of this data object specified by the data-index of this observation. | |
size_t | numberObservations () const |
Returns the number of observations that are stored by this data object. | |
bool | isValidDataIndex (const DataIndex &dataIndex) const |
Returns whether a given data-index is valid and has a corresponding observation stored in this data object. | |
const Observation & | operator[] (const DataIndex &dataIndex) const |
Returns one specific observation of this data object specified by the data-index of this observation. | |
Data< T, tDimension > & | operator= (Data< T, tDimension > &&data) noexcept |
Move operator. | |
operator bool () const | |
Returns whether this data object holds at least one observation. | |
Data ()=default | |
Creates a new empty data object. | |
Data (const Observation **observationPointers, const size_t numberObservations, const bool copyPointers=false) | |
Creates a new data object by observations lying at individual memory positions. | |
Data (Data< T, tDimension > &&data) noexcept | |
Move constructor for an data object. | |
const Observation & | observation (const DataIndex &dataIndex) const |
Returns one specific observation of this data object specified by the data-index of this observation. | |
size_t | numberObservations () const |
Returns the number of observations that are stored by this data object. | |
bool | isValidDataIndex (const DataIndex &dataIndex) const |
Returns whether a given data-index is valid and has a corresponding observation stored in this data object. | |
const Observation & | operator[] (const DataIndex &dataIndex) const |
Returns one specific observation of this data object specified by the data-index of this observation. | |
Data< T, tDimension > & | operator= (Data< T, tDimension > &&data) noexcept |
Move operator. | |
operator bool () const | |
Returns whether this data object holds at least one observation. | |
Data (const Observation *observations, const size_t numberObservations, const bool copyObservations) | |
Data (Data< T, tDimension > &&data) noexcept | |
const Clustering< true >::Data< T, tDimension >::Observation & | observation (const DataIndex &dataIndex) const |
size_t | numberObservations () const |
bool | isValidDataIndex (const DataIndex &dataIndex) const |
const Clustering< true >::Data< T, tDimension >::Observation & | operator[] (const DataIndex &dataIndex) const |
Clustering< true >::Data< T, tDimension > & | operator= (Data< T, tDimension > &&data) noexcept |
operator bool () const | |
Data (const Observation **observationPointers, const size_t numberObservations, const bool copyPointers) | |
Data (Data< T, tDimension > &&data) noexcept | |
const Clustering< false >::Data< T, tDimension >::Observation & | observation (const DataIndex &dataIndex) const |
size_t | numberObservations () const |
bool | isValidDataIndex (const DataIndex &dataIndex) const |
const Clustering< false >::Data< T, tDimension >::Observation & | operator[] (const DataIndex &dataIndex) const |
Clustering< false >::Data< T, tDimension > & | operator= (Data< T, tDimension > &&data) noexcept |
operator bool () const | |
Protected Attributes | |
std::vector< Observation > | copyObservations_ |
The optional observations that are stored as copy. | |
const Observation * | observations_ = nullptr |
The observation objects of this data object. | |
size_t | numberObservations_ = 0 |
The number of observation elements of this data object. | |
std::vector< const Observation * > | copyObservationPointers_ |
The optional observation pointers that are stored as copy. | |
const Observation ** | observationPointers_ = nullptr |
The observation pointers of this data object. | |
This class implements the abstract data object which will be specialized for both data modes toggled by tUseIndices.
Specialization for Clustering<true>::Data<T, tDimension>.
T | The data type of each element of an observation |
tDimension | The dimension of each observation (the number of elements in each observation), with range [1, infinity) |
This data class implements the first data mode of the clustering class identifying observations by their indices.
T | The data type of each element of an observation |
tDimension | The dimension of each observation (the number of elements in each observation), with range [1, infinity) |
This data class implements the second data mode of the clustering class identifying observations by their pointers.
T | The data type of each element of an observation |
tDimension | The dimension of each observation (the number of elements in each observation), with range [1, infinity) |
typedef size_t Ocean::Clustering< tUseIndices >::Data< T, tDimension >::DataIndex |
Definition of an index that addresses one specific observation element in the data object that stores all observations.
typedef size_t Ocean::Clustering< tUseIndices >::Data< T, tDimension >::DataIndex |
Definition of an index that addresses one specific observation element in the data object that stores all observations.
typedef std::vector<DataIndex> Ocean::Clustering< tUseIndices >::Data< T, tDimension >::DataIndices |
Definition of a vector holding indices to the data object.
typedef std::vector<DataIndex> Ocean::Clustering< tUseIndices >::Data< T, tDimension >::DataIndices |
Definition of a vector holding indices to the data object.
typedef StaticBuffer<T, tDimension> Ocean::Clustering< tUseIndices >::Data< T, tDimension >::Observation |
Definition of an observation object.
typedef StaticBuffer<T, tDimension> Ocean::Clustering< tUseIndices >::Data< T, tDimension >::Observation |
Definition of an observation object.
|
default |
Creates a new empty data object.
Ocean::Clustering< tUseIndices >::Data< T, tDimension >::Data | ( | const Observation * | observations, |
const size_t | numberObservations, | ||
const bool | copyObservations = false |
||
) |
Creates a new data object by observations lying in a joined memory block as array.
Due to performance issues: The given observations can be copied or used directly without any memory copy.
Beware: If no copy of the observations is created, the given observations must exist as long as this data object (or the corresponding clustering object) exists.
observations | The first observation in the given joined memory block |
numberObservations | The number of observations that are provided, with range [1, infinity) |
copyObservations | True, to copy the given observations; False, to simply use the given observations as reference |
|
inlinenoexcept |
Move constructor for an data object.
data | The data object to be moved |
|
default |
Creates a new empty data object.
Ocean::Clustering< tUseIndices >::Data< T, tDimension >::Data | ( | const Observation ** | observationPointers, |
const size_t | numberObservations, | ||
const bool | copyPointers = false |
||
) |
Creates a new data object by observations lying at individual memory positions.
Due to performance issues: The given observation !pointers! can be copied or used directly without any copy.
Beware: If no copy of the observation pointers is created, the given observation pointers must exist as long as this data object (or the corresponding clustering object) exists.
Beware: In any case, the observations (not the pointers) must exist as long as this data object (or the corresponding clustering object) exists.
observationPointers | The first pointer of the observations |
numberObservations | The number of observations/pointers that are provided, with range [1, infinity) |
copyPointers | True, to copy the given observation pointers (not the observations); False, to simply use the given observation pointers as reference |
|
inlinenoexcept |
Move constructor for an data object.
data | The data object to be moved |
Ocean::Clustering::Data< T, tDimension >::Data | ( | const Observation * | observations, |
const size_t | numberObservations, | ||
const bool | copyObservations | ||
) |
|
inlinenoexcept |
Ocean::Clustering::Data< T, tDimension >::Data | ( | const Observation ** | observationPointers, |
const size_t | numberObservations, | ||
const bool | copyPointers | ||
) |
|
inlinenoexcept |
|
inline |
Returns whether a given data-index is valid and has a corresponding observation stored in this data object.
dataIndex | The data-index that will be checked |
|
inline |
Returns whether a given data-index is valid and has a corresponding observation stored in this data object.
dataIndex | The data-index that will be checked |
|
inline |
|
inline |
|
inline |
Returns the number of observations that are stored by this data object.
|
inline |
Returns the number of observations that are stored by this data object.
|
inline |
|
inline |
|
inline |
Returns one specific observation of this data object specified by the data-index of this observation.
dataIndex | The data-index of the observation that will be returned, ensure that the given data-index is valid |
|
inline |
Returns one specific observation of this data object specified by the data-index of this observation.
dataIndex | The data-index of the observation that will be returned, ensure that the given data-index is valid |
|
inline |
|
inline |
|
inlineexplicit |
Returns whether this data object holds at least one observation.
|
inlineexplicit |
Returns whether this data object holds at least one observation.
|
inline |
|
inline |
|
inlinenoexcept |
Move operator.
data | The data object that will be moved to this object. |
|
inlinenoexcept |
Move operator.
data | The data object that will be moved to this object. |
|
inlinenoexcept |
|
inlinenoexcept |
|
inline |
Returns one specific observation of this data object specified by the data-index of this observation.
dataIndex | The data-index of the observation that will be returned, ensure that the given data-index is valid |
|
inline |
Returns one specific observation of this data object specified by the data-index of this observation.
dataIndex | The data-index of the observation that will be returned, ensure that the given data-index is valid |
|
inline |
|
inline |
|
protected |
The optional observation pointers that are stored as copy.
|
protected |
The optional observations that are stored as copy.
|
protected |
The number of observation elements of this data object.
|
protected |
The observation pointers of this data object.
|
protected |
The observation objects of this data object.