[ library(matrix_util) | Reference Manual | Alphabetic Index ]

matrix(+NRows, +NCols, -Rows, -Cols)

Create a matrix as both a list of rows and a list of columns

Examples

    ?- matrix(2,3,Rows,Cols).
    Rows = [[_183, _185, _187], [_191, _193, _195]]
    Cols = [[_183, _191], [_185, _193], [_187, _195]]
    Yes (0.00s cpu)