So I have this list of Numpy arrays:
import numpy as np
from numpy import array
m = [array([0, 64]), array([ 0, 79]), array([0, 165]), array([0, 50])]
How do I index the number 50 from the m[3] element in the array?
So I have this list of Numpy arrays:
import numpy as np
from numpy import array
m = [array([0, 64]), array([ 0, 79]), array([0, 165]), array([0, 50])]
How do I index the number 50 from the m[3] element in the array?
Turns out it is actually accessed like normal python lists:
m[3][1]