Package org.scilab.modules.types

Examples of org.scilab.modules.types.ScilabType


            if (sci.open()) {
                /* Send a Scilab instruction */
                sci.exec("foo = [ 2, 4, 6; 4, 0, 10; 6, 10, 12 ];");

                /* Retrieve the variable foo */
                ScilabType foo = sci.get("foo");

                /* Display the variable */
                System.out.println("Representation of  : " + foo);

                /* Get the data and retrieve the 2,2 value */
 
View Full Code Here

TOP

Related Classes of org.scilab.modules.types.ScilabType

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.