Compute a population table.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual double[,] GetPopulationTable(
	int[] nDeaths
)
Visual Basic (Declaration)
Public Overridable Function GetPopulationTable ( _
	nDeaths As Integer() _
) As Double(,)
Visual C++
public:
virtual array<double,2>^ GetPopulationTable(
	array<int>^ nDeaths
)

Parameters

nDeaths
Type: array< System..::.Int32 >[]()[]
An int array of nClasses containing the number of deaths in each age interval.

Return Value

A double matrix of dimensions nClasses by 12 containing the population table. Entries in the ith row are for the age interval defined by age[i]. Column definitions are the same as in GetLifeTable.

See Also