Package | Description |
---|---|
com.jmatio.common.util | |
com.jmatio.io | |
com.jmatio.io.stream | |
com.jmatio.types |
Modifier and Type | Method and Description |
---|---|
Object |
MLArrayQuery.getContent(MLArray array,
int m,
int n)
Returns the content of the field/cell/object.
|
static Object |
MLArrayQuery.q(MLArray array,
String query) |
Object |
MLArrayQuery.query(MLArray array)
Parses the query string and returns the object it refers to.
|
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. |
ArrayList<MLArray> |
MatFileReader.getData()
Deprecated.
use
getContent which returns a Map to provide
easier access to MLArray s contained in 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 . |
Constructor and Description |
---|
FileBufferedOutputStream(MLArray array) |
Modifier and Type | Class and Description |
---|---|
class |
MLCell |
class |
MLChar |
class |
MLDouble
Class represents Double array (matrix)
|
class |
MLEmptyArray |
class |
MLInt16
Class represents Int16 array (matrix)
|
class |
MLInt32 |
class |
MLInt64
Class represents Int64 (long) array (matrix)
|
class |
MLInt8 |
class |
MLJavaObject |
class |
MLNumericArray<T extends Number> |
class |
MLObject |
class |
MLSingle |
class |
MLSparse |
class |
MLStructure
This class represents Matlab's Structure object (structure array).
|
class |
MLUInt32 |
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 struct
in struct array or null if the field doesn't exist.
|
MLArray |
MLStructure.getField(String name,
int index)
Gets a value of the field described by name from index'th struct
in struct array or null if the field doesn't exist.
|
MLArray |
MLStructure.getField(String name,
int m,
int n)
Gets a value of the field described by name from (m,n)'th struct
in struct array or null if the field doesn't exist.
|
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 © 2015. All rights reserved.