Learn about vectors and tensors.
# empty vector v = [] # one's vector v = [1, 1] # matrix v = [[1, 0], [1, 2]] # this matrix has two vectors (columns) # which are [1, 0] and [1, 2] # 1 1 # 0 2
Was this page helpful?