package org.geogebra.common.kernel.advanced; import org.geogebra.common.kernel.Kernel; import org.geogebra.common.kernel.algos.AlgoMatrixPlot; import org.geogebra.common.kernel.commands.CmdOneListFunction; import org.geogebra.common.kernel.geos.GeoElement; import org.geogebra.common.kernel.geos.GeoList; /** * ReducedRowEchelonForm[ <List> ] Michael Borcherds */ public class CmdMatrixPlot extends CmdOneListFunction { /** * Creates new command processor * * @param kernel * kernel */ public CmdMatrixPlot(Kernel kernel) { super(kernel); } @Override final protected GeoElement doCommand(String a, GeoList b) { AlgoMatrixPlot algo = new AlgoMatrixPlot(cons, a, b); return algo.getResult(); } }