<< dispmat_plotgetcell Graphics Numerical >>

Display Matrix Toolbox >> Display Matrix Toolbox > Graphics > dispmat_plotnew

dispmat_plotnew

Displays a matrix of values with entries from A.

Calling Sequence

graphmat = dispmat_plotnew ( A );
graphmat = dispmat_plotnew ( A , figWidth );
graphmat = dispmat_plotnew ( A , figWidth , figHeight , titlestr );

Parameters

A :

a n-by-m matrix of doubles

figWidth :

a 1x1 matrix of floating point integers, the width of the figure (default figWidth = 400)

figHeight :

a 1x1 matrix of floating point integers, the width of the figure (default figHeight = 400)

titlestr :

a 1x1 matrix of strings, the title of the graphics (default titlestr = "Matrix Content")

graphmat :

a graphical matrix, as created by dispmat_plotnew

Description

Returns a data structure which can be processed by dispmat_plotgetcell.

Examples

A=[
-9          11         -21          63        -252
70         -69         141        -421        1684
-575         575       -1149        3451      -13801
3891       -3891        7782      -23345       93365
1024       -1024        2048       -6144       24572
];
graphmat = dispmat_plotnew ( A );
// Take some time to see the matrix...
// ... now close
close ( graphmat.figure );

Authors


Report an issue
<< dispmat_plotgetcell Graphics Numerical >>