A C M O P R S T V W 

A

AbstractMatrix1DReader<E> - Class in org.dishevelled.matrix.io.impl
Abstract reader for matrices of objects in one dimension.
AbstractMatrix1DReader() - Constructor for class org.dishevelled.matrix.io.impl.AbstractMatrix1DReader
 
AbstractMatrix1DWriter<E> - Class in org.dishevelled.matrix.io.impl
Abstract writer for matrices of objects in one dimension.
AbstractMatrix1DWriter() - Constructor for class org.dishevelled.matrix.io.impl.AbstractMatrix1DWriter
 
AbstractMatrix2DReader<E> - Class in org.dishevelled.matrix.io.impl
Abstract reader for matrices of objects in two dimensions.
AbstractMatrix2DReader() - Constructor for class org.dishevelled.matrix.io.impl.AbstractMatrix2DReader
 
AbstractMatrix2DWriter<E> - Class in org.dishevelled.matrix.io.impl
Abstract writer for matrices of objects in two dimensions.
AbstractMatrix2DWriter() - Constructor for class org.dishevelled.matrix.io.impl.AbstractMatrix2DWriter
 
AbstractMatrix3DReader<E> - Class in org.dishevelled.matrix.io.impl
Abstract reader for matrices of objects in three dimensions.
AbstractMatrix3DReader() - Constructor for class org.dishevelled.matrix.io.impl.AbstractMatrix3DReader
 
AbstractMatrix3DWriter<E> - Class in org.dishevelled.matrix.io.impl
Abstract writer for matrices of objects in three dimensions.
AbstractMatrix3DWriter() - Constructor for class org.dishevelled.matrix.io.impl.AbstractMatrix3DWriter
 
AbstractMatrixMarketReader - Class in org.dishevelled.matrix.io.impl
Abstract Matrix Market format reader for matrices of doubles in two dimensions.
AbstractMatrixMarketReader() - Constructor for class org.dishevelled.matrix.io.impl.AbstractMatrixMarketReader
 
AbstractMatrixMarketReader.ReaderStrategy - Interface in org.dishevelled.matrix.io.impl
Strategy for handling symmetry structure.
AbstractSparseTextMatrix1DReader<E> - Class in org.dishevelled.matrix.io.impl.sparse
Abstract tab-delimited text reader for sparse matrices of objects in one dimension.
AbstractSparseTextMatrix1DReader() - Constructor for class org.dishevelled.matrix.io.impl.sparse.AbstractSparseTextMatrix1DReader
 
AbstractSparseTextMatrix2DReader<E> - Class in org.dishevelled.matrix.io.impl.sparse
Abstract tab-delimited text reader for sparse matrices of objects in two dimensions.
AbstractSparseTextMatrix2DReader() - Constructor for class org.dishevelled.matrix.io.impl.sparse.AbstractSparseTextMatrix2DReader
 
AbstractSparseTextMatrix3DReader<E> - Class in org.dishevelled.matrix.io.impl.sparse
Abstract tab-delimited text reader for sparse matrices of objects in three dimensions.
AbstractSparseTextMatrix3DReader() - Constructor for class org.dishevelled.matrix.io.impl.sparse.AbstractSparseTextMatrix3DReader
 
AbstractTextMatrix1DReader<E> - Class in org.dishevelled.matrix.io.impl
Abstract tab-delimited text reader for matrices of objects in one dimension.
AbstractTextMatrix1DReader() - Constructor for class org.dishevelled.matrix.io.impl.AbstractTextMatrix1DReader
 
AbstractTextMatrix2DReader<E> - Class in org.dishevelled.matrix.io.impl
Abstract tab-delimited text reader for matrices of objects in two dimensions.
AbstractTextMatrix2DReader() - Constructor for class org.dishevelled.matrix.io.impl.AbstractTextMatrix2DReader
 
AbstractTextMatrix3DReader<E> - Class in org.dishevelled.matrix.io.impl
Abstract tab-delimited text reader for matrices of objects in three dimensions.
AbstractTextMatrix3DReader() - Constructor for class org.dishevelled.matrix.io.impl.AbstractTextMatrix3DReader
 
append(Matrix2D<? extends Number>, T) - Method in class org.dishevelled.matrix.io.impl.MatrixMarketWriter
Append the specified 2D matrix to the specified appendable.
append(Matrix1D<? extends E>, T) - Method in class org.dishevelled.matrix.io.impl.TextMatrix1DWriter
Append the specified 1D matrix to the specified appendable.
append(Matrix2D<? extends E>, T) - Method in class org.dishevelled.matrix.io.impl.TextMatrix2DWriter
Append the specified 2D matrix to the specified appendable.
append(Matrix3D<? extends E>, T) - Method in class org.dishevelled.matrix.io.impl.TextMatrix3DWriter
Append the specified 3D matrix to the specified appendable.
append(Matrix1D<? extends E>, T) - Method in class org.dishevelled.matrix.io.impl.ValuesMatrix1DWriter
Append the specified 1D matrix to the specified appendable.
append(Matrix2D<? extends E>, T) - Method in class org.dishevelled.matrix.io.impl.ValuesMatrix2DWriter
Append the specified 2D matrix to the specified appendable.
append(Matrix3D<? extends E>, T) - Method in class org.dishevelled.matrix.io.impl.ValuesMatrix3DWriter
Append the specified 3D matrix to the specified appendable.
append(Matrix1D<? extends E>, T) - Method in interface org.dishevelled.matrix.io.Matrix1DWriter
Append the specified 1D matrix to the specified appendable.
append(Matrix2D<? extends E>, T) - Method in interface org.dishevelled.matrix.io.Matrix2DWriter
Append the specified 2D matrix to the specified appendable.
append(Matrix3D<? extends E>, T) - Method in interface org.dishevelled.matrix.io.Matrix3DWriter
Append the specified 3D matrix to the specified appendable.

C

cardinality(int) - Method in interface org.dishevelled.matrix.io.impl.AbstractMatrixMarketReader.ReaderStrategy
Return the approximate cardinality of the matrix to create for the specified number of entries in the file.
closeQuietly(InputStream) - Static method in class org.dishevelled.matrix.io.impl.MatrixIOUtils
Close the specified input stream quietly.
closeQuietly(Reader) - Static method in class org.dishevelled.matrix.io.impl.MatrixIOUtils
Close the specified reader quietly.
closeQuietly(Writer) - Static method in class org.dishevelled.matrix.io.impl.MatrixIOUtils
Close the specified writer quietly.
createMatrix1D(long, int) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix1DReader
Create and return a new instance of an implementation of Matrix1D.
createMatrix1D(long, int) - Method in class org.dishevelled.matrix.io.impl.sparse.AbstractSparseTextMatrix1DReader
Create and return a new instance of an implementation of Matrix1D.
createMatrix2D(long, long, int) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix2DReader
Create and return a new instance of an implementation of Matrix2D.
createMatrix2D(long, long, int) - Method in class org.dishevelled.matrix.io.impl.sparse.AbstractSparseTextMatrix2DReader
Create and return a new instance of an implementation of Matrix2D.
createMatrix2D(long, long, int) - Method in class org.dishevelled.matrix.io.impl.sparse.SparseMatrixMarketReader
Create and return a new instance of an implementation of Matrix2D.
createMatrix3D(long, long, long, int) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix3DReader
Create and return a new instance of an implementation of Matrix3D.
createMatrix3D(long, long, long, int) - Method in class org.dishevelled.matrix.io.impl.sparse.AbstractSparseTextMatrix3DReader
Create and return a new instance of an implementation of Matrix3D.

M

Matrix1DReader<E> - Interface in org.dishevelled.matrix.io
Reader for matrices of objects in one dimension.
Matrix1DWriter<E> - Interface in org.dishevelled.matrix.io
Writer for matrices of objects in one dimension.
Matrix2DReader<E> - Interface in org.dishevelled.matrix.io
Reader for matrices of objects in two dimensions.
Matrix2DWriter<E> - Interface in org.dishevelled.matrix.io
Writer for matrices of objects in two dimensions.
Matrix3DReader<E> - Interface in org.dishevelled.matrix.io
Reader for matrices of objects in three dimensions.
Matrix3DWriter<E> - Interface in org.dishevelled.matrix.io
Writer for matrices of objects in three dimensions.
MatrixIOUtils - Class in org.dishevelled.matrix.io.impl
Static utility methods for matrix IO.
MatrixMarketWriter - Class in org.dishevelled.matrix.io.impl
Matrix Market format writer for matrices of numbers in two dimensions.
MatrixMarketWriter() - Constructor for class org.dishevelled.matrix.io.impl.MatrixMarketWriter
 

O

org.dishevelled.matrix.io - package org.dishevelled.matrix.io
Matrix readers and writers.
org.dishevelled.matrix.io.impl - package org.dishevelled.matrix.io.impl
Implementations of Matrix*DReader and Matrix*DWriter.
org.dishevelled.matrix.io.impl.sparse - package org.dishevelled.matrix.io.impl.sparse
Sparse matrix readers.

P

parse(String) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix1DReader
Parse the specified value to an instance of type E.
parse(String) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix2DReader
Parse the specified value to an instance of type E.
parse(String) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix3DReader
Parse the specified value to an instance of type E.
parse(String) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrixMarketReader
Parse the specified value to an instance of type E.
parse(String) - Method in class org.dishevelled.matrix.io.impl.sparse.SparseTextMatrix1DReader
Parse the specified value to an instance of type E.
parse(String) - Method in class org.dishevelled.matrix.io.impl.sparse.SparseTextMatrix2DReader
Parse the specified value to an instance of type E.
parse(String) - Method in class org.dishevelled.matrix.io.impl.sparse.SparseTextMatrix3DReader
Parse the specified value to an instance of type E.

R

read(File) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix1DReader
Read a 1D matrix from the specified file.
read(URL) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix1DReader
Read a 1D matrix from the specified URL.
read(File) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix2DReader
Read a 2D matrix from the specified file.
read(URL) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix2DReader
Read a 2D matrix from the specified URL.
read(File) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix3DReader
Read a 3D matrix from the specified file.
read(URL) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix3DReader
Read a 3D matrix from the specified URL.
read(InputStream) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrixMarketReader
Read a 2D matrix from the specified input stream.
read(Matrix2D<Double>, long, long, double) - Method in interface org.dishevelled.matrix.io.impl.AbstractMatrixMarketReader.ReaderStrategy
Notify this reader strategy that the specified value was read for the specified matrix at the specified coordinates.
read(InputStream) - Method in class org.dishevelled.matrix.io.impl.AbstractTextMatrix1DReader
Read a 1D matrix from the specified input stream.
read(InputStream) - Method in class org.dishevelled.matrix.io.impl.AbstractTextMatrix2DReader
Read a 2D matrix from the specified input stream.
read(InputStream) - Method in class org.dishevelled.matrix.io.impl.AbstractTextMatrix3DReader
Read a 3D matrix from the specified input stream.
read(File) - Method in interface org.dishevelled.matrix.io.Matrix1DReader
Read a 1D matrix from the specified file.
read(URL) - Method in interface org.dishevelled.matrix.io.Matrix1DReader
Read a 1D matrix from the specified URL.
read(InputStream) - Method in interface org.dishevelled.matrix.io.Matrix1DReader
Read a 1D matrix from the specified input stream.
read(File) - Method in interface org.dishevelled.matrix.io.Matrix2DReader
Read a 2D matrix from the specified file.
read(URL) - Method in interface org.dishevelled.matrix.io.Matrix2DReader
Read a 2D matrix from the specified URL.
read(InputStream) - Method in interface org.dishevelled.matrix.io.Matrix2DReader
Read a 2D matrix from the specified input stream.
read(File) - Method in interface org.dishevelled.matrix.io.Matrix3DReader
Read a 3D matrix from the specified file.
read(URL) - Method in interface org.dishevelled.matrix.io.Matrix3DReader
Read a 3D matrix from the specified URL.
read(InputStream) - Method in interface org.dishevelled.matrix.io.Matrix3DReader
Read a 3D matrix from the specified input stream.

S

SparseMatrixMarketReader - Class in org.dishevelled.matrix.io.impl.sparse
Matrix Market format reader for sparse matrices of doubles in two dimensions.
SparseMatrixMarketReader() - Constructor for class org.dishevelled.matrix.io.impl.sparse.SparseMatrixMarketReader
 
SparseTextMatrix1DReader<E> - Class in org.dishevelled.matrix.io.impl.sparse
Tab-delimited text reader for sparse matrices of objects in one dimension.
SparseTextMatrix1DReader(UnaryFunction<String, ? extends E>) - Constructor for class org.dishevelled.matrix.io.impl.sparse.SparseTextMatrix1DReader
Create a new sparse text matrix 1D reader with the specified parser function.
SparseTextMatrix2DReader<E> - Class in org.dishevelled.matrix.io.impl.sparse
Tab-delimited text reader for sparse matrices of objects in two dimensions.
SparseTextMatrix2DReader(UnaryFunction<String, ? extends E>) - Constructor for class org.dishevelled.matrix.io.impl.sparse.SparseTextMatrix2DReader
Create a new sparse text matrix 2D reader with the specified parser function.
SparseTextMatrix3DReader<E> - Class in org.dishevelled.matrix.io.impl.sparse
Tab-delimited text reader for sparse matrices of objects in three dimensions.
SparseTextMatrix3DReader(UnaryFunction<String, ? extends E>) - Constructor for class org.dishevelled.matrix.io.impl.sparse.SparseTextMatrix3DReader
Create a new sparse text matrix 3D reader with the specified parser function.

T

TextMatrix1DWriter<E> - Class in org.dishevelled.matrix.io.impl
Tab-delimited text writer for matrices of objects in one dimension.
TextMatrix1DWriter() - Constructor for class org.dishevelled.matrix.io.impl.TextMatrix1DWriter
 
TextMatrix2DWriter<E> - Class in org.dishevelled.matrix.io.impl
Tab-delimited text writer for matrices of objects in two dimensions.
TextMatrix2DWriter() - Constructor for class org.dishevelled.matrix.io.impl.TextMatrix2DWriter
 
TextMatrix3DWriter<E> - Class in org.dishevelled.matrix.io.impl
Tab-delimited text writer for matrices of objects in three dimensions.
TextMatrix3DWriter() - Constructor for class org.dishevelled.matrix.io.impl.TextMatrix3DWriter
 
toCharSequence(Object) - Static method in class org.dishevelled.matrix.io.impl.MatrixIOUtils
Return the specified value as a CharSequence.

V

ValuesMatrix1DWriter<E> - Class in org.dishevelled.matrix.io.impl
Values writer for matrices of objects in one dimension.
ValuesMatrix1DWriter() - Constructor for class org.dishevelled.matrix.io.impl.ValuesMatrix1DWriter
 
ValuesMatrix2DWriter<E> - Class in org.dishevelled.matrix.io.impl
Values writer for matrices of objects in two dimensions.
ValuesMatrix2DWriter() - Constructor for class org.dishevelled.matrix.io.impl.ValuesMatrix2DWriter
 
ValuesMatrix3DWriter<E> - Class in org.dishevelled.matrix.io.impl
Values writer for matrices of objects in three dimensions.
ValuesMatrix3DWriter() - Constructor for class org.dishevelled.matrix.io.impl.ValuesMatrix3DWriter
 

W

write(Matrix1D<? extends E>, File) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix1DWriter
Write the specified 1D matrix to the specified file.
write(Matrix1D<? extends E>, OutputStream) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix1DWriter
Write the specified 1D matrix to the specified output stream.
write(Matrix2D<? extends E>, File) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix2DWriter
Write the specified 2D matrix to the specified file.
write(Matrix2D<? extends E>, OutputStream) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix2DWriter
Write the specified 2D matrix to the specified output stream.
write(Matrix3D<? extends E>, File) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix3DWriter
Write the specified 3D matrix to the specified file.
write(Matrix3D<? extends E>, OutputStream) - Method in class org.dishevelled.matrix.io.impl.AbstractMatrix3DWriter
Write the specified 3D matrix to the specified output stream.
write(Matrix1D<? extends E>, File) - Method in interface org.dishevelled.matrix.io.Matrix1DWriter
Write the specified 1D matrix to the specified file.
write(Matrix1D<? extends E>, OutputStream) - Method in interface org.dishevelled.matrix.io.Matrix1DWriter
Write the specified 1D matrix to the specified output stream.
write(Matrix2D<? extends E>, File) - Method in interface org.dishevelled.matrix.io.Matrix2DWriter
Write the specified 2D matrix to the specified file.
write(Matrix2D<? extends E>, OutputStream) - Method in interface org.dishevelled.matrix.io.Matrix2DWriter
Write the specified 2D matrix to the specified output stream.
write(Matrix3D<? extends E>, File) - Method in interface org.dishevelled.matrix.io.Matrix3DWriter
Write the specified 3D matrix to the specified file.
write(Matrix3D<? extends E>, OutputStream) - Method in interface org.dishevelled.matrix.io.Matrix3DWriter
Write the specified 3D matrix to the specified output stream.
A C M O P R S T V W 

Copyright (c) 2008-2013 held jointly by the individual authors. Licensed under the GNU Lesser General Public License (LGPL).