public abstract class TransientSolver extends Solver
getTransientProbs(double, State)
Constructor and Description |
---|
TransientSolver(MarkovProcess mp)
Build a solver with the asssocieted Markov Process.
|
Modifier and Type | Method and Description |
---|---|
double[][] |
getTransientProbs(double[] times,
State i0)
Computes the steady state probabilities at this given times, assuming the
Markov Chain starts in the given state i0.
|
abstract double[] |
getTransientProbs(double time,
State i0)
Computes the steady state probabilities at this given time, assuming the
Markov Chain starts in the given state i0.
|
double[][] |
getTransientProbs(int NumberPoints,
double delta,
State i0)
Computes the steady state probabilities at times delta, 2delta,
3delta,..., assuming the Markov Chain starts in the given state i0.
|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
description, equals
public TransientSolver(MarkovProcess mp)
mp
- public abstract double[] getTransientProbs(double time, State i0)
time
- i0
- Initial State.public double[][] getTransientProbs(double[] times, State i0)
times
- An array with the times at which the probabilities are to be
evaluated.i0
- The initial state (at time t=0).public double[][] getTransientProbs(int NumberPoints, double delta, State i0)
NumberPoints
- delta
- the time gap between measurements.i0
- Initial state.