package org.geogebra.common.kernel.commands; import org.geogebra.common.kernel.CircularDefinitionException; import org.geogebra.common.kernel.Kernel; import org.geogebra.common.kernel.algos.AlgoTransferFunction; import org.geogebra.common.kernel.arithmetic.Command; import org.geogebra.common.kernel.geos.GeoElement; import org.geogebra.common.kernel.geos.GeoList; import org.geogebra.common.kernel.geos.GeoNumberValue; import org.geogebra.common.main.MyError; /** * * * Nyquist [ <List of coefficents of numerator> , <List of coefficents of * denominator> ] * * Nyquist [ <List of coefficents of numerator> , <List of coefficents of * denominator>, omega ] * * * * @author Giuliano * */ public class CmdNyquist extends CommandProcessor { /** * @param kernel * kernel */ public CmdNyquist(Kernel kernel) { super(kernel); } @Override public GeoElement[] process(Command c) throws MyError, CircularDefinitionException { int n = c.getArgumentNumber(); GeoElement[] arg; arg = resArgs(c); switch (n) { case 2: if (!arg[0].isGeoList()) { throw argErr(app, c, arg[0]); } if (!arg[1].isGeoList()) { throw argErr(app, c, arg[1]); } AlgoTransferFunction algo = new AlgoTransferFunction(cons, c.getLabel(), (GeoList) arg[0], (GeoList) arg[1]); GeoElement[] ret = { algo.getResult() }; return ret; case 3: if (!arg[0].isGeoList()) { throw argErr(app, c, arg[0]); } if (!arg[1].isGeoList()) { throw argErr(app, c, arg[1]); } if (arg[2] instanceof GeoNumberValue) { algo = new AlgoTransferFunction(cons, c.getLabel(), (GeoList) arg[0], (GeoList) arg[1], (GeoNumberValue) arg[2]); ret = new GeoElement[1]; ret[0] = algo.getResult(); return ret; } throw argErr(app, c, arg[2]); default: throw argNumErr(app, c, n); } } }