I have a column matrix, called "a", with x rows. I'm trying to create a matrix filled with 1's that has the same number x rows.
When I say newmat = [](N Rows(a), 2), I get the error "Expected integer for number of rows" when trying to create the matrix.
Type(3), and any other integer argument, will return "Integer" but Type(N Rows(a)) returns "Number". I tried setting the x rows to a variable name and trying that, but I get the same error. Is there another way to do this? I haven't found a way to convert a Number type to an Integer type on the boards or in the documentation.