
list2rows(+List, +NRows, +NCols, -Rows)

   Create a matrix from a flat list of row-wise listed elements

Type
   library(matrix_util)

Examples
   
    ?- list2rows([1,2,3,4,5,6],2,3,Rows).
    Rows = [[1, 2, 3], [4, 5, 6]]
    Yes (0.00s cpu)
    


