Class: cgv.CGV
Package: cgv
Add baseline file for comparison
cgvObj
.addBaseline(inputName,baselineFile)
cgvObj
.addBaseline(inputName,baselineFile,toleranceFile)
associates
a baseline data file to an cgvObj
.addBaseline(inputName
,baselineFile
)inputName
in cgvObj
. cgvObj
is
a handle to a cgv.CGV
object. If a baseline file
is present, when you call cgv.CGV.run
, cgvObj
automatically
compares baseline data to the result data of the current execution
of cgvObj
.
includes
an optional tolerance file to apply when comparing the baseline data
to the result data of the current execution of cgvObj
.addBaseline(inputName
,baselineFile
,toleranceFile
)cgvObj
.
|
A unique numeric or character identifier assigned to the input
data associated with |
|
A MAT-file containing baseline data |
|
File containing the tolerance specification, which is created using |
A typical workflow for defining baseline data in a cgv.CGV
object
and then comparing the baseline data to the execution data is as follows:
Create a cgv.CGV
object for a model.
Add input data to the cgv.CGV
object
by calling addInputData
.
Add the baseline file to the cgv.CGV
object by calling addBaseline
. which associates the
inputName
for input data in the cgv.CGV
object with input data stored in
the cgv.CGV
object as the baseline
data.
Run the cgv.CGV
object by calling
run
, which automatically compares the baseline
data to the result data in this execution.
Call getStatus
to determine the results of the
comparison.