com.meliorbis.numerics.markov.DiscreteMarkovProcess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
package com.meliorbis.numerics.markov;
import com.meliorbis.numerics.generic.primitives.DoubleArray;
/**
* Represents a discrete markov process and provides access to the discrtee levels and the
* transition probabilities between levels
*
* @author Tobias Grasl
*/
public interface DiscreteMarkovProcess
{
DoubleArray> getLevels();
DoubleArray> getTransitionProbabilities();
}