659
edits
Carandraug (talk | contribs) m (→How to create an instance of a Java class?: fixing quotes) |
Carandraug (talk | contribs) m (small fixes syntax) |
||
Line 3: | Line 3: | ||
This description is based on the Octave package <code>java-1.2.8</code>. The <code>java</code> package usually installs its script files (.m) in the directory <code>.../share/Octave/packages/java-1.2.8</code> and its binary (.oct) files in <code>.../libexec/Octave/packages/java-1.2.8</code>. You can get help on specific functions in Octave by executing the help command | This description is based on the Octave package <code>java-1.2.8</code>. The <code>java</code> package usually installs its script files (.m) in the directory <code>.../share/Octave/packages/java-1.2.8</code> and its binary (.oct) files in <code>.../libexec/Octave/packages/java-1.2.8</code>. You can get help on specific functions in Octave by executing the help command | ||
with the name of a function from this package: | with the name of a function from this package: | ||
octave | octave> help javaObject | ||
You can view the whole doc file in Octave by executing the info command with just the word java: | You can view the whole doc file in Octave by executing the info command with just the word java: | ||
octave | octave> doc java | ||
Note on calling Octave from Java: the <code>java</code> package is designed for calling Java from Octave. If you want to call Octave from Java, you might want to use a library like <code>javaOctave</code> [http://kenai.com/projects/javaOctave] or <code>joPas</code> [http://jopas.sourceforge.net]. | Note on calling Octave from Java: the <code>java</code> package is designed for calling Java from Octave. If you want to call Octave from Java, you might want to use a library like <code>javaOctave</code> [http://kenai.com/projects/javaOctave] or <code>joPas</code> [http://jopas.sourceforge.net]. |