stationary_distribution {oeli} | R Documentation |
Stationary distribution
Description
This function computes the stationary distribution corresponding to a transition probability matrix.
Usage
stationary_distribution(tpm, soft_fail = FALSE)
Arguments
tpm |
[ |
soft_fail |
[ |
Value
A numeric
vector.
See Also
Other matrix helpers:
check_correlation_matrix()
,
check_covariance_matrix()
,
check_transition_probability_matrix()
,
cov_to_chol()
,
diff_cov()
,
insert_matrix_column()
,
matrix_diagonal_indices()
,
matrix_indices()
,
sample_correlation_matrix()
,
sample_covariance_matrix()
,
sample_transition_probability_matrix()
Examples
tpm <- matrix(0.05, nrow = 3, ncol = 3)
diag(tpm) <- 0.9
stationary_distribution(tpm)
[Package oeli version 0.7.0 Index]