Estimates the probability of the given cell in the underlying population.

Namespace: Meta.Numerics.Statistics
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public virtual UncertainValue Probability(
	int r,
	int c
)
Public Overridable Function Probability ( _
	r As Integer, _
	c As Integer _
) As UncertainValue
public:
virtual UncertainValue Probability(
	int r, 
	int c
)
abstract Probability : 
        r : int * 
        c : int -> UncertainValue 
override Probability : 
        r : int * 
        c : int -> UncertainValue 

Parameters

r
Int32
The (zero-based) row index.
c
Int32
The (zero-based) column index.

Return Value

The probability for a random event to occur inthe given cell.

See Also