I am trying to add one column to the array created from recfromcsv. In this case it\'s an array: [210,8] (rows, cols).
recfromcsv
[210,8]
I want to add a nint
I add a new column with ones to a matrix array in this way:
Z = append([[1 for _ in range(0,len(Z))]], Z.T,0).T
Maybe it is not that efficient?