|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use MLArray | |
|---|---|
| com.jmatio.io | The jmatio.io package contains classes of the JMatIO library, which supports reading and writing Matlab's binary MAT-files. |
| com.jmatio.types | The jmatio.types package contains classes of the JMatIO library, which supports reading and writing Matlab's binary MAT-files. |
| Uses of MLArray in com.jmatio.io |
|---|
| Methods in com.jmatio.io that return MLArray | |
|---|---|
MLArray |
MatFileReader.getMLArray(String name)
Returns the value to which the red file maps the specified array name. |
| Methods in com.jmatio.io that return types with arguments of type MLArray | |
|---|---|
Map<String,MLArray> |
MatFileReader.getContent()
Returns a map of MLArray objects that were inside MAT-file. |
ArrayList<MLArray> |
MatFileReader.getData()
Deprecated. use getContent which returs a Map to provide
easier access to MLArrays contained in MAT-file |
| Constructor parameters in com.jmatio.io with type arguments of type MLArray | |
|---|---|
MatFileWriter(DataOutputStream output,
Collection<MLArray> data)
Writes MLArrays into OuputSteram. |
|
MatFileWriter(File file,
Collection<MLArray> data)
Writes MLArrays into File. |
|
MatFileWriter(String fileName,
Collection<MLArray> data)
Writes MLArrays into file given by fileName. |
|
| Uses of MLArray in com.jmatio.types |
|---|
| Subclasses of MLArray in com.jmatio.types | |
|---|---|
class |
MLCell
|
class |
MLChar
|
class |
MLDouble
Class represents Double array (matrix) |
class |
MLEmptyArray
|
class |
MLNumericArray<T extends Number>
|
class |
MLSparse
|
class |
MLStructure
This class represents Matlab's Structure object (struct array). |
| Methods in com.jmatio.types that return MLArray | |
|---|---|
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. |
| Methods in com.jmatio.types that return types with arguments of type MLArray | |
|---|---|
ArrayList<MLArray> |
MLCell.cells()
|
Collection<MLArray> |
MLStructure.getAllFields()
Gets all field from sruct array as flat list of fields. |
| Methods in com.jmatio.types with parameters of type MLArray | |
|---|---|
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 |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||