ALTAAnalysisOptions Class: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:APIClass| | {{Template:APIClass|ALTADataSet_Class|ALTADataSet}} | ||
{{Template:ALTADataSet.AnalysisSettings.Cmt}} | {{Template:ALTADataSet.AnalysisSettings.Cmt}} | ||
Revision as of 21:23, 26 February 2014
Sets some of the control panel analysis settings for use with the ALTADataSet.Calculate method.
Properties
- ModelType As ALTASolverModel Sets or gets the ALTA model type.
- Distribution As ALTASolverDistribution Sets or gets the ALTA distribution.
- Analysis As ALTASolverMethod Sets or gets the ALTA solver method.
- UngroupGroupedData As Boolean Sets or gets whether to ungroup grouped data.
- SortBeforeCalculations As Boolean Sets or gets whether to sort before calculation.
Formatted Usage Example
Declare the ALTADataSet. See New ALTADataSet for additional details.
Dim ALTADS as New ALTADataSet
Set the various Settings.
ALTADS.AnalysisSettings.ModelType = ALTASolverModel.Arrhenius ALTADS.AnalysisSettings.Distribution = ALTASolverDistribution.Weibull ALTADS.AnalysisSettings.Analysis = ALTASolverMethod.MLE ALTADS.AnalysisSettings.UngroupGroupedData = False ALTADS.AnalysisSettings.SortBeforeCalculations = True