Package | Description |
---|---|
com.jmatio.io | |
com.jmatio.types |
Modifier and Type | Method and Description |
---|---|
MLArray |
MatFileReader.getMLArray(String name)
Returns the value to which the red file maps the specified array name.
|
Modifier and Type | Method and Description |
---|---|
Map<String,MLArray> |
MatFileReader.getContent()
Returns a map of
MLArray objects that were inside
MAT-file. |
Map<String,MLArray> |
MatFileReader.read(File file)
Reads the content of a MAT-file and returns the mapped content.
|
Map<String,MLArray> |
MatFileReader.read(File file,
int policy)
Reads the content of a MAT-file and returns the mapped content.
|
Map<String,MLArray> |
MatFileReader.read(File file,
MatFileFilter filter,
int policy) |
Modifier and Type | Method and Description |
---|---|
void |
MatFileIncrementalWriter.write(MLArray data) |
Modifier and Type | Method and Description |
---|---|
void |
MatFileIncrementalWriter.write(Collection<MLArray> data)
Writes
MLArrays into WritableByteChannel . |
void |
MatFileWriter.write(File file,
Collection<MLArray> data)
Writes
MLArrays into File |
void |
MatFileWriter.write(String filepath,
Collection<MLArray> data)
Writes
MLArrays into file created from
filepath . |
Constructor and Description |
---|
MatFileWriter(File file,
Collection<MLArray> data)
Writes MLArrays into
File . |
MatFileWriter(String fileName,
Collection<MLArray> data)
Writes MLArrays into file given by
fileName . |
MatFileWriter(WritableByteChannel channel,
Collection<MLArray> data)
Writes MLArrays into
OuputSteram . |
Modifier and Type | Class and Description |
---|---|
class |
MLCell |
class |
MLChar |
class |
MLDouble
Class represents Double array (matrix)
|
class |
MLEmptyArray |
class |
MLInt32
Class represents Int32 (int) array (matrix)
|
class |
MLInt64
Class represents Int64 (long) array (matrix)
|
class |
MLInt8 |
class |
MLNumericArray<T extends Number> |
class |
MLSingle |
class |
MLSparse |
class |
MLStructure
This class represents Matlab's Structure object (structure array).
|
class |
MLUInt64
Class represents Int64 (long) array (matrix)
|
class |
MLUInt8
Class represents UInt8 (byte) array (matrix)
|
Modifier and Type | Method and Description |
---|---|
MLArray |
MLCell.get(int index) |
MLArray |
MLCell.get(int m,
int n) |
MLArray |
MLStructure.getField(String name)
Gets a value of the field described by name from current structe
in struc array.
|
MLArray |
MLStructure.getField(String name,
int index)
Gets a value of the field described by name from index'th structe
in struc array.
|
MLArray |
MLStructure.getField(String name,
int m,
int n)
Gets a value of the field described by name from (m,n)'th structe
in struc array.
|
Modifier and Type | Method and Description |
---|---|
ArrayList<MLArray> |
MLCell.cells() |
Collection<MLArray> |
MLStructure.getAllFields()
Gets all field from sruct array as flat list of fields.
|
Modifier and Type | Method and Description |
---|---|
void |
MLCell.set(MLArray value,
int index) |
void |
MLCell.set(MLArray value,
int m,
int n) |
void |
MLStructure.setField(String name,
MLArray value)
Sets field for current structure
|
void |
MLStructure.setField(String name,
MLArray value,
int index)
Sets filed for structure described by index in struct array
|
void |
MLStructure.setField(String name,
MLArray value,
int m,
int n)
Sets field for (m,n)'th structure in struct array
|
Copyright © 2006–2015 GeoSolutions. All rights reserved.