Examples of StructuralException


Examples of ca.nengo.model.StructuralException

   */
  public DecodedTermination(Node node, String name, float[][] transform, LinearSystem dynamics, Integrator integrator)
      throws StructuralException {

    if (dynamics.getInputDimension() != 1 || dynamics.getOutputDimension() != 1) {
      throw new StructuralException("Dynamics must be single-input single-output");
    }

    myOutputDimension = transform.length;
    setTransform(transform);

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.