All Classes Interface Summary Class Summary Enum Summary Exception Summary
Class |
Description |
AbstractGenericMatrix<D,L extends List<?>> |
A general matrix that does not even know
that it is an array it stores its in.
|
AbstractLogicalFloatingPointWriter<T extends AbstractGenericMatrix<?,?>> |
Common Writer class for logical and floating point types:
Boolean, Double, ...
|
AbstractObjectMatrix<T> |
General matrix with Object values
which serves also as base class for
OctaveCell .
|
AbstractOctaveStringReader |
The reader of string/sq_string.
|
AbstractPrimitiveMatrixReader<T extends AbstractGenericMatrix<?,?>> |
Common Reader class for matrices of primitive java types:
Boolean, Double, Integer....
|
AbstractPrimitiveMatrixWriter<T extends AbstractGenericMatrix<?,?>> |
Common Writer class for primitive java types: Boolean, Double, Integer....
|
AbstractPrimitiveScalarReader<T extends AbstractGenericMatrix<?,?>> |
Common Reader class for scalars of primitive java types:
Boolean, Double, Integer....
|
BooleanReader |
The reader for the octave type "bool matrix" (matrix with boolean entries)
reading an OctaveBoolean from a BufferedReader .
**** the class name should be BoolMatrixReader ****
|
BooleanSingleReader |
|
BooleanWriter |
The writer for the octave type "bool matrix" (matrix with boolean entries)
and "bool", which is short for "bool scalar",
writing an OctaveBoolean to a Writer .
|
Cast |
Helper class for the auto cast functionality.
|
Cast.ClassPair<F,T> |
Represents a pair of classes,
essentially a cast from one to the other class.
|
Caster<F,T> |
Interface for a caster that transforms objects from type F to T.
|
CellReader |
|
CellWriter |
|
ComplexMatrixReader |
|
ComplexScalarReader |
|
DataReadFunctor |
|
DataWriteFunctor |
|
DoubleToComplexCaster |
Cast OctaveDouble to OctaveComplex.
|
FakeRangeReader |
The reader for the octave type "range" (**** seems not general enough)
reading an OctaveFake **** from a BufferedReader .
|
FakeWriter |
|
FunctionHandleWriter |
|
HomeExampleTest |
http://kenai.com/projects/javaoctave/pages/Home
|
Int32MatrixReader |
|
Int32MatrixWriter |
The writer for the octave type "int32 matrix"
writing an OctaveInt to a Writer .
|
Int32ScalarReader |
|
Int64MatrixReader |
|
Int64MatrixWriter |
The writer for the octave type "int32 matrix"
writing an OctaveLong to a Writer .
|
Int64ScalarReader |
|
IOUtils |
Class for holding static utility functions for readers and writers:
copy from reader to writer.
|
MatrixReader |
|
MatrixWriter |
The writer for the octave types
"matrix" (of double) and "scalar" (of double)
writing an OctaveDouble to a Writer .
|
NamedThreadFactory |
A ThreadFactory that allows to create a thread from a runnable
with a specific thread name.
|
NoCloseWriter |
Will protect a Writer from being closed by NoCloseWriter.close() ,
useful for protecting stdout and stderr from being closed.
|
Octave |
Place holder for factory methods.
|
OctaveBoolean |
Represents a Boolean matrix.
|
OctaveCastServiceException |
Exception thrown when class cast service is inconsistent in a way.
|
OctaveCell |
Nd cells.
|
OctaveClassCastException |
Exception thrown when a cast fails inside JavaOctave.
|
OctaveComplex |
Represents a complex matrix.
|
OctaveDataReader |
Service Provider Interface for the IO handler
that can read OctaveObject s.
|
OctaveDataWriter<T extends OctaveObject> |
Service Provider Interface for the IO handler
that can write OctaveObject s.
|
OctaveDouble |
Represents a matrix of doubles.
|
OctaveEngine |
The connection to an octave process.
|
OctaveEngine.ManifestInfo |
|
OctaveEngine.NameDesc |
Describes the meaning of a name, if any.
|
OctaveEngine.NameDesc.Category |
|
OctaveEngine.PackageDesc |
Representation of a package as returned by the octave command
pkg('list') which returns a cell array
of structs with fields reflected by the fields of this class.
|
OctaveEngineFactory |
Factory that creates OctaveEngines.
|
OctaveEvalException |
|
OctaveException |
Base exception class for the JavaOctave project.
|
OctaveExec |
The object connecting to the octave process.
|
OctaveFake |
A fake object, the point of this object is
to make it easy to create objects that is read
without being unfolded into Java.
|
OctaveFunctionHandle |
A function handle.
|
OctaveInt |
Represents a matrix of ints.
|
OctaveInterruptedException |
Exception thrown when class cast service is inconsistent in a way.
|
OctaveIO |
|
OctaveIOException |
Exception thrown when IO errors happen,
this will most likely be cause by the octave process dying.
|
OctaveLong |
Represents a matrix of ints.
|
OctaveNonrecoverableException |
An exception in the Octave engine that did break the octave process,
any action on the Octave object now will cause a
new OctaveNonrecoverableException.
|
OctaveObject |
Common interface for the octave objects.
|
OctaveParseException |
Exception thrown when parsing of the output from octave fails.
|
OctaveReaderCallable |
Callable that reads from the octave process.
|
OctaveRecoverableException |
An exception in the Octave engine that did not break the octave process.
|
OctaveSparseBoolean |
Represents a Boolean matrix and is appropriate for sparse matrices.
|
OctaveSqStringReader |
|
OctaveString |
Represents an octave string.
|
OctaveStringReader |
|
OctaveStringWriter |
|
OctaveStruct |
1x1 struct.
|
OctaveUtils |
Deprecated. |
OctaveWriterCallable |
Callable that writes scripts to the octave process.
|
OdeExampleTest |
http://kenai.com/projects/javaoctave/pages/SimpleExampleOfSolvingAnODE
|
ReaderWriteFunctor |
Reads all from the reader and writes it to the writer.
|
ReaderWriterPipeThread |
A Thread that moves data from a Reader to a Writer.
|
ReadFunctor |
Function object that will execute reads on a Reader.
|
RunOctave |
|
ScalarReader |
|
ScalarStructReader |
The reader for the octave type "scalar struct"
(which is an encoding similar to "struct"
introduced in octave 3.6, optimized to the 1x1 struct)
reading an OctaveObject from a BufferedReader .
|
SimpleExampleTest |
http://kenai.com/projects/javaoctave/pages/SimpleExampleOfJavaOctaveUsage
|
SparseBooleanReader |
|
SparseBooleanWriter |
|
StringUtil |
Class for holding static utility functions for string handling: quoting
and for parsing numbers.
|
StructReader |
|
StructWriter |
|
TeeWriter |
Executes the actions on a single writer to multiple writers.
|
TestIoFakeRange |
|
TestIoFunctionHandle |
|
TestIoOctaveBoolean |
|
TestIoOctaveCell |
|
TestIoOctaveComplex |
|
TestIoOctaveDouble |
|
TestIoOctaveInt |
|
TestIoOctaveLong |
|
TestIoOctaveSparseBoolean |
|
TestIoOctaveSqString |
Test reading of sq_string (can not be written)
|
TestIoOctaveString |
|
TestIoOctaveStruct |
Test I/O on OctaveStruct
|
TestMetaInfo |
Test meta info like version (both octave and javaoctave bridge),
vendor, packages installed.
|
TestOctave |
Tests eu.simuline.octave.Octave
|
TestOctave.DestroyThread |
Helper for TestOctave
|
TestOctave.DontCloseWriter |
|
TestOctaveBoolean |
Test OctaveBoolean
|
TestOctaveCell |
Test OctaveCell
|
TestOctaveComplex |
Test OctaveComplex
|
TestOctaveDouble |
|
TestOctaveErrors |
Test
|
TestOctaveInt |
|
TestOctaveIO |
|
TestOctaveLong |
|
TestOctaveString |
|
TestOctaveStruct |
Test OctaveStruct object
|
TestUnknownVar |
Tests
|
Uint8MatrixReader |
|
Uint8MatrixWriter |
This is deactivated.
|
WriteFunctor |
Function object that will execute writes to a Writer.
|
WriterReadFunctor |
Reads all from the reader and writes it to the writer.
|