LifeTablesGetPopulationTable Method |
Compute a population table.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual double[,] GetPopulationTable(
int[] nDeaths
)
Public Overridable Function GetPopulationTable (
nDeaths As Integer()
) As Double(,)
public:
virtual array<double,2>^ GetPopulationTable(
array<int>^ nDeaths
)
abstract GetPopulationTable :
nDeaths : int[] -> float[,]
override GetPopulationTable :
nDeaths : int[] -> float[,]
Parameters
- nDeaths
- Type: SystemInt32
An int array of nClasses containing the
number of deaths in each age interval.
Return Value
Type:
Double
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