CModel.SetModel: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
{{APIPrefix|As}}
{{APIPrefix|As}}
{{APIName|[[ModelTypeEnum]],}}
{{APIName|[[ModelTypeEnum]],}}
{{APIPrefix|ByVal ParamArray}}
{{APIPrefix|ByVal}}
{{APIName|ModelCategory}}
{{APIPrefix|As}}
{{APIName|[[ModelCategoryEnum]],}}
{{APIPrefix|ByVal}}
{{APIName|ModelParams()}}
{{APIName|ModelParams()}}
{{APIPrefix|As Double}}
{{APIPrefix|As Double}}

Revision as of 17:48, 30 October 2013


Creates a new model.

Method Syntax

SetModel ( ByVal ModelType As ModelTypeEnum, ByVal ModelCategory As ModelCategoryEnum, ByVal ModelParams() As Double )
Sets a new model.

Parameters

ModelType The ModelTypeEnum describing this model.

ModelParams The array of the models' parameters.

Usage Example

Declare the cModel class using an in-line parameter list.

       Dim newModel As New cModel(ModelTypeEnum.Weibull2, ModelCategoryEnum.Reliability, "NewModel1", 1, 100)

Change the model type and parameters.

       newModel.SetModel(ModelTypeEnum.Lognormal, 2, 200)