I'm quite new in Numpy and I don´t know how to solve this problem.
I have these arrays:
one = np.array(np.ones(3)) --> [ 1. 1. 1.]
two = np.array(np.zeros(3)) --> [ 0. 0. 0.]
three = np.array([1,2,3]) --> [ 1 2 3]
I would like to create an array that holds these three arrays in this way:
[[ 1. 1. 1.]
[ 0. 0. 0.]
[ 1. 2. 3.]]
thanks
np.array([one, two, three])?