I have a 2-D array that is called dataSet which is 335 x 225. I want to fill a new empty array, called newDataSet, 1-D array that is 1 x 7537. The newDataSet should be filled from the first 7537 data points of dataSet. How can I do this?
I want to use it a for loop like so:
for row in trainingData.shape[0]
for column in trainingData.shape[1]
bin_1 = trainingData[:33,:255]