SSJ API Documentation
Stochastic Simulation in Java
Loading...
Searching...
No Matches
MonteCarloModelDoubleArray.java
1
package
umontreal.ssj.mcqmctools;
2
3
import
umontreal.ssj.rng.*;
4
10
11
public
interface
MonteCarloModelDoubleArray
{
12
13
// Optional
14
// public void simulate ();
15
19
public
void
simulate
(
RandomStream
stream);
20
24
public
double
[]
getPerformance
();
25
29
public
int
getPerformanceDim
();
30
34
public
String
toString
();
35
39
public
String
getTag
();
40
41
}
umontreal.ssj.mcqmctools.MonteCarloModelDoubleArray
Similar to MonteCarloModelDouble except that the returned performance is an array of real numbers.
Definition
MonteCarloModelDoubleArray.java:11
umontreal.ssj.mcqmctools.MonteCarloModelDoubleArray.toString
String toString()
Returns a short description of the model and its parameters.
umontreal.ssj.mcqmctools.MonteCarloModelDoubleArray.getPerformanceDim
int getPerformanceDim()
Returns the dimension of the array of performance measures.
umontreal.ssj.mcqmctools.MonteCarloModelDoubleArray.getTag
String getTag()
Returns a short model name (tag) to be used in reports.
umontreal.ssj.mcqmctools.MonteCarloModelDoubleArray.simulate
void simulate(RandomStream stream)
Simulates the model for one run.
umontreal.ssj.mcqmctools.MonteCarloModelDoubleArray.getPerformance
double[] getPerformance()
Recovers and returns the realization of the vector of performance measures.
umontreal.ssj.rng.RandomStream
This interface defines the basic structures to handle multiple streams of uniform (pseudo)random numb...
Definition
RandomStream.java:141
src
main
java
umontreal
ssj
mcqmctools
MonteCarloModelDoubleArray.java
Generated by
1.16.1