ALTADataSet.ClearDataSet: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) (Created page with '{{Template:APIClass|ALTADataSet Class|ALTADataSet}} Provides a method to clear the raw data entered into the ALTADataSet. == Method Syntax == {{APIName|ClearDataSet()}}<br> {{…') |
John Leavitt (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
== Method Syntax == | == Method Syntax == | ||
{{APIName|ClearDataSet()}}<br> | {{APIName|'''ClearDataSet'''()}}<br> | ||
{{APIComment|Clears all data and fitted model. All analysis settings stay unchanged.}} | {{APIComment|Clears all data and fitted model. All analysis settings stay unchanged.}} | ||
Revision as of 16:02, 24 September 2013
Provides a method to clear the raw data entered into the ALTADataSet.
Method Syntax
ClearDataSet()
Clears all data and fitted model. All analysis settings stay unchanged.
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 the stress profile. See ALTADataSet.AddStressProfile for additional details
ALTADS.AddStressProfile(sp)
Use ClearDataSet to clear data and fitted model.
ALTADS.ClearDataSet
Get the number of failures. In this example, NumberOfFailures will be 0.
Dim NumberOfFailures as Integer NumberOfFailures = ALTADS.FailureCount