package org.geogebra.common.kernel.statistics; import org.geogebra.common.kernel.Kernel; import org.geogebra.common.kernel.commands.CmdOneOrTwoListsFunction; import org.geogebra.common.kernel.geos.GeoElement; import org.geogebra.common.kernel.geos.GeoList; /** * SampleSDY[List of points] SampleSDY[List of numbers, list of numbers] */ public class CmdSampleSDY extends CmdOneOrTwoListsFunction { /** * Create new command processor * * @param kernel * kernel */ public CmdSampleSDY(Kernel kernel) { super(kernel); } @Override final protected GeoElement doCommand(String a, GeoList b) { AlgoListSampleSDY algo = new AlgoListSampleSDY(cons, a, b); return algo.getResult(); } @Override final protected GeoElement doCommand(String a, GeoList b, GeoList c) { return null; } }