SSJ API Documentation
Stochastic Simulation in Java
Loading...
Searching...
No Matches
MonteCarloModelCV.java
1package umontreal.ssj.mcqmctools;
2
7
8public interface MonteCarloModelCV extends MonteCarloModelDouble {
9
13 public double[] getValuesCV();
14
18 // public void getValuesCV (double[] valCV);
19
23 public int getNumberCV();
24
25}
An extension of MonteCarloModelDouble that also implements a vector of control variates.
int getNumberCV()
TO DO: Recovers the realizations of the control variates from the last run.
double[] getValuesCV()
Recovers the realizations of the control variates for the last run.
An interface for a very simple simulation model for which Monte Carlo (MC) and RQMC experiments are t...