All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.meliorbis.numerics.markov.DiscreteMarkovProcess Maven / Gradle / Ivy

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();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy