Contents Previous Next


DistType Property (BDKDistribution Object)

Description

Sets or returns the type of distribution (e.g. Normal, Lognormal, etc.)

Syntax

object.DistType

Arguments

None.

Return Value

(BDKDistributionType) – the type of the distribution. The list of possible distribution types are:

Possible Distribution Types  
BDKDistTypeNONE BDKDistTypeINVGAUSS
BDKDistTypeBETA BDKDistTypeLOGISTIC
BDKDistTypeBETAGENERAL BDKDistTypeLOGLOGISTIC
BDKDistTypeBETASUBJ BDKDistTypeLOGNORM
BDKDistTypeBINOMIAL BDKDistTypeLOGNORM2
BDKDistTypeCHISQ BDKDistTypeNEGBIN
BDKDistTypeCUMUL BDKDistTypeNORMAL
BDKDistTypeDISCRETE BDKDistTypePARETO
BDKDistTypeDUNIFORM BDKDistTypePARETO2
BDKDistTypeERF BDKDistTypePEARSON5
BDKDistTypeERLANG BDKDistTypePEARSON6
BDKDistTypeEXPON BDKDistTypePERT
BDKDistTypeEXTVALUE BDKDistTypePOISSON
BDKDistTypeGAMMA BDKDistTypeRAYLEIGH
BDKDistTypeGENERAL BDKDistTypeSTUDENT
BDKDistTypeGEOMET BDKDistTypeTRIANG
BDKDistTypeHISTOGRM BDKDistTypeTRIGEN
BDKDistTypeHYPERGEO BDKDistTypeUNIFORM
BDKDistTypeINTUNIFORM BDKDistTypeWEIBULL

Example

'Create a normal with a mean of 22 and a stdev of 5:
Dim dist as New BDKDistribution
With dist
    .DistType = BDKDistTypeNormal
    .Arg(1) = 22
    .Arg(2) = 5
End With