<body>
This package provides a way to use and call Scilab engine from a Java
-application or library.<br />
-<br />
-Example:<br />
+application or library.<br>
+<br>
+Example:<br>
<code>
-Scilab sci = new Scilab();<br />
-sci.open();<br />
-sci.exec("b = matrix(1:100,10,10)");<br />
-ScilabType b = sci.get("b");<br />
-b.getHeight(); // 10 <br />
-b.getWidth(); // 10<br />
-ScilabDouble b2 = (ScilabDouble)sci.get("b");<br />
-b2.equals(b); // true<br />
+Scilab sci = new Scilab();<br>
+sci.open();<br>
+sci.exec("b = matrix(1:100,10,10)");<br>
+ScilabType b = sci.get("b");<br>
+b.getHeight(); // 10 <br>
+b.getWidth(); // 10<br>
+ScilabDouble b2 = (ScilabDouble)sci.get("b");<br>
+b2.equals(b); // true<br>
+</code>
</body>
-</html>
\ No newline at end of file
+</html>
<html>
<body>
-This package provides a representation of most of the Scilab datatypes.<br />
-<br />
+This package provides a representation of most of the Scilab datatypes.<br>
+<br>
-Example:<br />
+Example:<br>
<code>
-double [][]a={{21.2, 22.0, 42.0, 39.0},{23.2, 24.0, 44.0, 40.0}};<br />
+double [][]a={{21.2, 22.0, 42.0, 39.0},{23.2, 24.0, 44.0, 40.0}};<br>
ScilabDouble aMatrix = new ScilabDouble(a);
</code>
</body>