MetaModelResult¶
- class MetaModelResult(*args)¶
Data structure containing a metamodel.
- Parameters:
- sampleX, sampleY2-d sequence of float
Input/output samples
- metaModel
Function Definition of the response surface(s) of the model’s output(s).
Methods
Accessor to the object's name.
Accessor to the input sample.
Accessor to the metamodel.
getName()Accessor to the object's name.
Accessor to the output sample.
hasName()Test if the object is named.
setInputSample(sampleX)Accessor to the input sample.
setMetaModel(metaModel)Accessor to the metamodel.
setName(name)Accessor to the object's name.
setOutputSample(sampleY)Accessor to the output sample.
See also
Notes
Structure created by the method run() of
GaussianProcessRegressionorFunctionalChaosAlgorithmand obtained thanks to the method getResult() of these classes.- __init__(*args)¶
- getClassName()¶
Accessor to the object’s name.
- Returns:
- class_namestr
The object class name (object.__class__.__name__).
- getName()¶
Accessor to the object’s name.
- Returns:
- namestr
The name of the object.
- hasName()¶
Test if the object is named.
- Returns:
- hasNamebool
True if the name is not empty.
- setInputSample(sampleX)¶
Accessor to the input sample.
- Parameters:
- inputSample
Sample The input sample.
- inputSample
- setName(name)¶
Accessor to the object’s name.
- Parameters:
- namestr
The name of the object.
OpenTURNS