Package eu.simuline.octave
Class OctaveUtils
- java.lang.Object
-
- eu.simuline.octave.OctaveUtils
-
public final class OctaveUtils extends Object
Deprecated.Small utility functions that can be used with JavaOctave. Holder class for static functions.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
OctaveUtils()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Collection<String>
listVars(OctaveEngine octave)
Deprecated.useOctaveEngine.getVarNames()
instead.
-
-
-
Method Detail
-
listVars
public static Collection<String> listVars(OctaveEngine octave)
Deprecated.useOctaveEngine.getVarNames()
instead.Returns a collection of variables defined excluding variables likeOctaveEngine.NARGIN
andOctaveEngine.ANS
but also those that are most likely to be created by this software. TBD: clarification- Parameters:
octave
- some octave engine.- Returns:
- collection of variables
-
-