package org.geogebra.common.kernel.statistics; import org.geogebra.common.kernel.Kernel; import org.geogebra.common.kernel.commands.CmdOneListFunction; import org.geogebra.common.kernel.geos.GeoElement; import org.geogebra.common.kernel.geos.GeoList; /** * SYY[list of points] SYY[list of numbers,list of numbers] * */ public class CmdSYY extends CmdOneListFunction { /** * Creates new command processor * * @param kernel * kernel */ public CmdSYY(Kernel kernel) { super(kernel); } @Override final protected GeoElement doCommand(String a, GeoList b) { AlgoListSYY algo = new AlgoListSYY(cons, a, b); return algo.getResult(); } }