Example #1
0
 def execute(this, arguments, WORKINGMATRIX):
     width = arguments[0]
     height = arguments[1]
     print("Setting dimensions of matrix to {0} columns by {1} rows..."
         .format(width, height))
     MatrixUtils.setDims(height, width, WORKINGMATRIX)
     print("done")