FinMath.C Method

C(m, n) - binomial coefficient
public static double C( 
int m
int n 
)
This language is not supported or no code example is available.
public:  
static double C( 
int m
int n 
)
This language is not supported or no code example is available.
public static function C( 
m : int
n : int 
) : double;
This language is not supported or no code example is available.

Parameters

m
int

n
int

Return Value

double
Remarks
 
n!/(m!*(n-m)!)

In this article

Definition