package org.geogebra.common.kernel.statistics; import org.geogebra.common.kernel.Kernel; import org.geogebra.common.kernel.StringTemplate; import org.geogebra.common.kernel.arithmetic.BooleanValue; import org.geogebra.common.kernel.arithmetic.Command; import org.geogebra.common.kernel.commands.CommandProcessor; import org.geogebra.common.kernel.geos.GeoElement; import org.geogebra.common.kernel.geos.GeoFunction; import org.geogebra.common.kernel.geos.GeoNumberValue; import org.geogebra.common.main.MyError; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; /** * Uniform[min,max,x] Uniform[min,max,value] Uniform[min,max,value,cumulative] */ public class CmdUniform extends CommandProcessor { /** * Creates new command processor * * @param kernel * kernel */ public CmdUniform(Kernel kernel) { super(kernel); } @Override @SuppressFBWarnings({ "SF_SWITCH_FALLTHROUGH", "missing break is deliberate" }) public GeoElement[] process(Command c) throws MyError { int n = c.getArgumentNumber(); boolean ok; GeoElement[] arg; BooleanValue cumulative = null; // default for n=3 arg = resArgs(c); switch (n) { case 4: if (!arg[2].isGeoFunction() || !((GeoFunction) arg[2]) .toString(StringTemplate.defaultTemplate).equals("x")) { throw argErr(app, c, arg[1]); } if (arg[3].isGeoBoolean()) { cumulative = (BooleanValue) arg[3]; } else { throw argErr(app, c, arg[3]); } // fall through case 3: if ((ok = arg[0] instanceof GeoNumberValue) && (arg[1] instanceof GeoNumberValue)) { if (arg[2].isGeoFunction() && ((GeoFunction) arg[2]) .toString(StringTemplate.defaultTemplate).equals("x")) { AlgoUniformDF algo = new AlgoUniformDF(cons, c.getLabel(), (GeoNumberValue) arg[0], (GeoNumberValue) arg[1], cumulative); return algo.getResult().asArray(); } else if (arg[2] instanceof GeoNumberValue) { AlgoUniform algo = new AlgoUniform(cons, c.getLabel(), (GeoNumberValue) arg[0], (GeoNumberValue) arg[1], (GeoNumberValue) arg[2]); return algo.getResult().asArray(); } else { throw argErr(app, c, arg[2]); } } throw argErr(app, c, ok ? arg[1] : arg[0]); default: throw argNumErr(app, c, n); } } }