Snailing Goat
Snailing Goat

Reputation: 43

Make list of arrays in python

I am making a neural network in Python and I want to generate training data for it. I need to make list of arrays.

I tried turning the arrays into lists. I tried the numpy.append() function and nothing worked.

Upvotes: 0

Views: 18707

Answers (1)

Abhijith Asokan
Abhijith Asokan

Reputation: 1875

final_array = array_camera.append(TD_camera)
final_direction = array_direction.append(TD_direction)

The above 2 lines doesn't work the way you expect.

append() function of list doesn't return anything. It adds data at the end of the list object through which the append() was called.

So final_array & final_direction will be None.

I think you just need to append data to final_array & final_direction. Like this

final_array ,final_direction =[],[]
.....
.....
final_array.append(TD_camera)
final_direction.append(TD_direction)

Upvotes: 2

Related Questions