I have a problem with printing a column in a numpy 3D Matrix. Here is a simplified version of the problem:
import numpy as np
Matrix = np.zeros(((10,9,3))) # Creates a 10 x 9 x 3 3D matrix
Matrix[2][2][6] = 578
# I want to print Matrix[2][x][6] for x in range(9)
# the purpose of this is that I want to get all the Values in Matrix[2][x][6]
Much appreciated if you guys can help me out. Thanks in advance.