View full contents of a matrix in Euler Math Toolbox

131 views Asked by At

How to display all the numbers from a given matrix in Euler Math Toolbox? It doesn't seem to show more than 8 columns at a time, which isn't enough as I frequently need to view more than that.

Output I'm getting as of now:

Output I'm getting as of now

1

There are 1 answers

0
Sardar Usama On BEST ANSWER

The documentation says:

Large matrices or vectors might not print in full size. To change this, toggle the behavior with:

largematrices on
largematrices off

or use the operator showlarge.

showlarge random(10,10)

See:
showlarge (Basic Utilities)

The link in the above documentation link directs here:

function prefix showlarge (x$)
Prints large matrices in full.

By default EMT eclipses lines and rows of large matrices. This can be used to see the full matrix. If the parameter is a variable the variable name will be printed.

The default can be changed with largematrices on/off.

x=random(20,5); showlarge(x)
showlarge(random(20,5))

See:
largematrices (Euler Core),
show (Maxima Documentation)