If I have a ndarray can I merge them into a 1D array?
ndarray
1D
Example:
v = [ [1 2], [3 4] ]
into
v = [1 2 3 4]
v = v.flatten()
Check also this, that is the same thing applied to Python's lists
this
list