Class Map_varcountKt
-
- All Implemented Interfaces:
public final class Map_varcountKt
-
-
Method Summary
Modifier and Type Method Description final static Double
map_varcount(Matrix D0, Matrix D1, Double t)
Computes the variance of the counts in a MAP over a time period t. final static Matrix
map_varcount(Matrix D0, Matrix D1, Matrix t)
Computes the variance of the counts in a MAP over multiple time periods. final static Double
map_varcount(MatrixCell MAP, Double t)
Computes the variance of the counts in a MAP over a time period t using a MatrixCell. final static Matrix
map_varcount(MatrixCell MAP, Matrix t)
Computes the variance of the counts in a MAP over multiple time periods using a MatrixCell. -
-
Method Detail
-
map_varcount
final static Double map_varcount(Matrix D0, Matrix D1, Double t)
Computes the variance of the counts in a MAP over a time period t.
This method calculates the variance of the number of events that occur in the MAP over the specified time interval t. It involves matrix operations that consider the MAP's transition structure and steady-state behavior.
- Parameters:
D0
- the hidden transition matrix of the MAPD1
- the visible transition matrix of the MAPt
- the time period over which to compute the variance of counts- Returns:
the variance of the counts over time t
-
map_varcount
final static Matrix map_varcount(Matrix D0, Matrix D1, Matrix t)
Computes the variance of the counts in a MAP over multiple time periods.
This method calculates the variance for each time period specified in the matrix t.
- Parameters:
D0
- the hidden transition matrix of the MAPD1
- the visible transition matrix of the MAPt
- a matrix containing the time periods over which to compute the variance of counts- Returns:
a matrix containing the variance of counts for each time period in t
-
map_varcount
final static Double map_varcount(MatrixCell MAP, Double t)
Computes the variance of the counts in a MAP over a time period t using a MatrixCell.
This method is a convenience overload that extracts the D0 and D1 matrices from the provided MatrixCell and calculates the variance of the counts over time t.
- Parameters:
MAP
- the MatrixCell representing the MAP, containing the D0 and D1 matricest
- the time period over which to compute the variance of counts- Returns:
the variance of the counts over time t
-
map_varcount
final static Matrix map_varcount(MatrixCell MAP, Matrix t)
Computes the variance of the counts in a MAP over multiple time periods using a MatrixCell.
This method is a convenience overload that extracts the D0 and D1 matrices from the provided MatrixCell and calculates the variance of the counts over multiple time periods specified in the matrix t.
- Parameters:
MAP
- the MatrixCell representing the MAP, containing the D0 and D1 matricest
- a matrix containing the time periods over which to compute the variance of counts- Returns:
a matrix containing the variance of counts for each time period in t
-
-
-
-