I would like to seek a help to convert from a list into the matrix. I have a list of array like this:
output [[[ 0.]
[ 0.]
[ 0.]
[ 1.]]
[[ 0.]
[ 0.]
[ 1.]
[ 0.]]
[[ 0.]
[ 0.]
[ 1.]
[ 0.]]]
And I need to convert it in the matrix:
X [matrix([[0],
[0],
[0],
[1]]), matrix([[0],
[0],
[1],
[0]]), matrix([[0],
[0],
[1],
[0]])
Hopefully, somebody may help me. Thank you.