Package ptolemy.backtrack.automatic.ptolemy.math

Examples of ptolemy.backtrack.automatic.ptolemy.math.Interpolation


     * @exception NameDuplicationException If the container already has an
     * actor with this name.
     */
    public Interpolator(CompositeEntity container, String name) throws NameDuplicationException, IllegalActionException  {
        super(container, name);
        $ASSIGN$_interpolation(new Interpolation());
        indexes = new Parameter(this, "indexes");
        indexes.setExpression("{0, 1}");
        indexes.setTypeEquals(new ArrayType(BaseType.INT));
        attributeChanged(indexes);
        values = new Parameter(this, "values");
View Full Code Here

TOP

Related Classes of ptolemy.backtrack.automatic.ptolemy.math.Interpolation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.