Package org.ejml.dense.row
Class FMatrixVisualization
java.lang.Object
org.ejml.dense.row.FMatrixVisualization
@Generated("org.ejml.dense.row.DMatrixVisualization")
public class FMatrixVisualization
extends java.lang.Object
Functions for visualizing matrices in a GUI matrices.
NOTE: In some embedded applications there is no GUI or AWT is not supported (like in Android) so excluding this class is necessary.
-
Constructor Summary
Constructors Constructor Description FMatrixVisualization() -
Method Summary
Modifier and Type Method Description static voidshow(org.ejml.data.FMatrixD1 A, java.lang.String title)Creates a window visually showing the matrix's state.
-
Constructor Details
-
FMatrixVisualization
public FMatrixVisualization()
-
-
Method Details
-
show
public static void show(org.ejml.data.FMatrixD1 A, java.lang.String title)Creates a window visually showing the matrix's state. Block means an element is zero. Red positive and blue negative. More intense the color larger the element's absolute value is.- Parameters:
A- A matrix.title- Name of the window.
-