CovarianceModelFactory¶
-
class
CovarianceModelFactory
(*args)¶ Estimation of the covariance model of a process.
Notes
This class is an interface class for all the classes that build covariance models. OpenTURNS provides two covariance model factories:
StationaryCovarianceModelFactory
for stationary processes andNonStationaryCovarianceModelFactory
for all processes. This factory does not make any hypothesis on the stationarity of the process.Methods
getClassName
()Accessor to the object’s name. getId
()Accessor to the object’s id. getImplementation
(*args)Accessor to the underlying implementation. getName
()Accessor to the object’s name. setName
(name)Accessor to the object’s name. build -
__init__
(*args)¶ Initialize self. See help(type(self)) for accurate signature.
-
getClassName
()¶ Accessor to the object’s name.
Returns: - class_name : str
The object class name (object.__class__.__name__).
-
getId
()¶ Accessor to the object’s id.
Returns: - id : int
Internal unique identifier.
-
getImplementation
(*args)¶ Accessor to the underlying implementation.
Returns: - impl : Implementation
The implementation class.
-
getName
()¶ Accessor to the object’s name.
Returns: - name : str
The name of the object.
-
setName
(name)¶ Accessor to the object’s name.
Parameters: - name : str
The name of the object.
-