Closed mepcotterell closed 6 years ago
Currently, given a matrix mat, the user needs to use ::plotv and specify each column, for example:
mat
::plotv
val mat = MatrixD((3, 2), 1, 2, 2, 4, 3, 9) ::printv mat.col(0) mat.col(1)
Instead, let's let the user use a command (proposed ::plotm) to automatically plot all columns in a matrix, for example:
::plotm
val mat = MatrixD((3, 2), 1, 2, 2, 4, 3, 9) ::printm mat
Currently, given a matrix
mat
, the user needs to use::plotv
and specify each column, for example:Instead, let's let the user use a command (proposed
::plotm
) to automatically plot all columns in a matrix, for example: