Uses of Class
mgui.interfaces.variables.MatrixInt
Package | Description |
---|---|
mgui.interfaces.plots |
Provides 2D and 3D plotting functionality.
|
mgui.interfaces.variables |
-
Uses of MatrixInt in mgui.interfaces.plots
Fields in mgui.interfaces.plots with type parameters of type MatrixInt Modifier and Type Field Description protected java.util.HashMap<java.lang.String,MatrixInt>
MatrixPlotDataSource. matrix_map
Methods in mgui.interfaces.plots that return MatrixInt Modifier and Type Method Description MatrixInt
MatrixPlotDataSource. getMatrix(java.lang.String channel)
Return the matrix corresponding tochannel
.Methods in mgui.interfaces.plots with parameters of type MatrixInt Modifier and Type Method Description void
MatrixPlotDataSource. setChannel(MatrixInt matrix)
Sets a channel for this data source; uses the object's name as the channel name. -
Uses of MatrixInt in mgui.interfaces.variables
Methods in mgui.interfaces.variables that return MatrixInt Modifier and Type Method Description MatrixInt
MatrixInt. getPart(int row_start, int row_end, int col_start, int col_end)
Returns a sub-matrix of this matrix, defined by start and end indices.MatrixInt
MatrixInt. getPart(java.lang.String name, int row_start, int col_start, int row_end, int col_end)
Returns a sub-matrix of this matrix, defined by start and end indices, with the given name.MatrixInt
MatrixInt. getPart(java.lang.String name, java.lang.String part)
Parsespart
to return a sub-matrix.