ALTADataSet.Calculate: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) No edit summary |
John Leavitt (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
== Method Syntax == | == Method Syntax == | ||
{{APIName|Calculate()}} | {{APIName|'''Calculate'''()}}<br> | ||
{{APIComment|Creates a model from the raw data previously entered in the data set. Also sets the Fitted Model property if successful. Clears it (sets to Nothing) in case of an error.}} | {{APIComment|Creates a model from the raw data previously entered in the data set. Also sets the Fitted Model property if successful. Clears it (sets to Nothing) in case of an error.}} | ||
Revision as of 16:01, 24 September 2013
Runs the calculation and creates a distribution model for the ALTADataSet.
Method Syntax
Calculate()
Creates a model from the raw data previously entered in the data set. Also sets the Fitted Model property if successful. Clears it (sets to Nothing) in case of an error.
Usage Example
Declare the ALTADataSet. See New ALTADataSet for additional details.
Dim ALTADS as New ALTADataSet
Declare an ALTAStressProfile. See ALTAStressProfile for additional details.
Dim sp = New ALTAStressProfile("Profile1") sp.RepeatCycle = True sp.AddSegment(1, 250) sp.AddSegment(2, 300) sp.AddSegment(3, 400)
Add values to the raw data.
ALTADS.AddFailure(1, 1, sp) ALTADS.AddFailure(2, 1, sp) ALTADS.AddFailure(3, 1, sp)
Calculate the ALTADataSet
ALTADS.Calculate