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