Example #1
0
 /** Creates a uniform variable from the parameters of the other variable. */
 public Uniform(VectorVariable variable) {
   maximum.set(variable.getMean(minimum));
 }
Example #2
0
 /** Creates a constant variable from the parameters of the other variable. */
 public Constant(VectorVariable variable) {
   variable.getMean(value);
 }