Displays a matrix of values with entries from A.
graphmat = dispmat_plotnew ( A ); graphmat = dispmat_plotnew ( A , figWidth ); graphmat = dispmat_plotnew ( A , figWidth , figHeight , titlestr );
a n-by-m matrix of doubles
a 1x1 matrix of floating point integers, the width of the figure (default figWidth = 400)
a 1x1 matrix of floating point integers, the width of the figure (default figHeight = 400)
a 1x1 matrix of strings, the title of the graphics (default titlestr = "Matrix Content")
a graphical matrix, as created by dispmat_plotnew
Returns a data structure which can be processed by dispmat_plotgetcell.
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 ); | ![]() | ![]() |