public class MarkovMatrix extends Object implements Serializable
| Constructor and Description |
|---|
MarkovMatrix() |
| Modifier and Type | Method and Description |
|---|---|
String |
getKey(String startState,
String endState) |
Map<String,Double> |
getStartStateCount() |
Map<String,Double> |
getTransitionCount() |
void |
setStartStateCount(Map<String,Double> startStateCount) |
void |
setTransitionCount(Map<String,Double> transitionCount) |
void |
updateStartStateCount(String startState,
double increment) |
void |
updateTransitionCount(String startState,
String endState,
double increment) |
Copyright © 2022 WSO2. All Rights Reserved.