/usr/include/openturns/CovarianceModelImplementation.hxx is in libopenturns-dev 1.5-7build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | // -*- C++ -*-
/**
* @file CovarianceModelImplementation.hxx
* @brief This class enables to build a covariance model
*
* Copyright 2005-2015 Airbus-EDF-IMACS-Phimeca
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* @author lebrun
* @date 2011-12-05 17:31:12 +0100 (lun. 05 déc. 2011)
*/
#ifndef OPENTURNS_COVARIANCEMODELIMPLEMENTATION_HXX
#define OPENTURNS_COVARIANCEMODELIMPLEMENTATION_HXX
#include "PersistentObject.hxx"
#include "CovarianceMatrix.hxx"
#include "Pointer.hxx"
#include "RegularGrid.hxx"
#include "Mesh.hxx"
#include "Basis.hxx"
BEGIN_NAMESPACE_OPENTURNS
/**
* @class CovarianceModelImplementation
*/
class OT_API CovarianceModelImplementation
: public PersistentObject
{
CLASSNAME;
public:
typedef Pointer<CovarianceModelImplementation> Implementation;
/** Dimension-based constructor */
explicit CovarianceModelImplementation(const UnsignedInteger spatialDimension = 1);
/** Standard constructor with amplitude and scale parameters parameters */
CovarianceModelImplementation(const UnsignedInteger spatialDimension,
const NumericalPoint & amplitude,
const NumericalPoint & scale);
/** Standard constructor with amplitude, scale and spatial correlation parameters parameters */
CovarianceModelImplementation(const UnsignedInteger spatialDimension,
const NumericalPoint & amplitude,
const NumericalPoint & scale,
const CorrelationMatrix & spatialCorrelation);
/** Standard constructor with scale and spatial covariance parameters parameters */
CovarianceModelImplementation(const UnsignedInteger spatialDimension,
const NumericalPoint & scale,
const CovarianceMatrix & spatialCovariance);
/** Virtual copy constructor */
virtual CovarianceModelImplementation * clone() const;
/** Dimensions accessors */
/** Dimension of the argument */
virtual UnsignedInteger getSpatialDimension() const;
/** Dimension of the values */
virtual UnsignedInteger getDimension() const;
/** Compute the covariance function */
virtual CovarianceMatrix operator() (const NumericalScalar s,
const NumericalScalar t) const;
virtual CovarianceMatrix operator() (const NumericalPoint & s,
const NumericalPoint & t) const;
// Special case for 1D model
virtual NumericalScalar computeAsScalar (const NumericalScalar s,
const NumericalScalar t) const;
virtual NumericalScalar computeAsScalar (const NumericalPoint & s,
const NumericalPoint & t) const;
virtual CovarianceMatrix operator() (const NumericalScalar tau) const;
virtual CovarianceMatrix operator() (const NumericalPoint & tau) const;
// Special case for 1D model
virtual NumericalScalar computeAsScalar (const NumericalScalar tau) const;
virtual NumericalScalar computeAsScalar (const NumericalPoint & tau) const;
/** Gradient */
virtual Matrix partialGradient(const NumericalPoint & s,
const NumericalPoint & t) const;
/** Discretize the covariance function on a given TimeGrid/Mesh */
virtual CovarianceMatrix discretize(const RegularGrid & timeGrid) const;
virtual CovarianceMatrix discretize(const Mesh & mesh) const;
virtual CovarianceMatrix discretize(const NumericalSample & vertices) const;
virtual NumericalSample discretizeRow(const NumericalSample & vertices,
const UnsignedInteger p) const;
/** Is it a stationary covariance model ? */
virtual Bool isStationary() const;
/** Amplitude accessors */
NumericalPoint getAmplitude() const;
void setAmplitude(const NumericalPoint & amplitude);
/** Scale accessors */
NumericalPoint getScale() const;
void setScale(const NumericalPoint & scale);
/** Spatial correlation accessors */
CorrelationMatrix getSpatialCorrelation() const;
void setSpatialCorrelation(const CorrelationMatrix & correlation);
/** Nugget factor accessor */
void setNuggetFactor(const NumericalScalar nuggetFactor);
NumericalScalar getNuggetFactor() const;
/** Parameters accessor */
void setParameters(const NumericalPoint & parameters);
NumericalPointWithDescription getParameters() const;
/** String converter */
virtual String __repr__() const;
/** String converter */
virtual String __str__(const String & offset = "") const;
/** Is the spatial correlation diagonal? */
Bool isDiagonal() const;
/** Marginal accessor */
virtual Implementation getMarginal(const UnsignedInteger index) const;
/** Method save() stores the object through the StorageManager */
virtual void save(Advocate & adv) const;
/** Method load() reloads the object from the StorageManager */
virtual void load(Advocate & adv);
protected:
/** Input dimension parameter */
UnsignedInteger spatialDimension_;
/** Input dimension parameter */
UnsignedInteger dimension_;
/** Collection - Container for amplitude values */
NumericalPoint amplitude_;
/** Collection - Container for scale values */
NumericalPoint scale_;
/** Correlation matrix of the spatial dependence structure */
CorrelationMatrix spatialCorrelation_;
/** Flag to tell if the model is diagonal */
Bool isDiagonal_;
/** Nugget factor */
NumericalScalar nuggetFactor_;
} ; /* class CovarianceModelImplementation */
END_NAMESPACE_OPENTURNS
#endif /* OPENTURNS_COVARIANCEMODELIMPLEMENTATION_HXX */
|