Learn
Tensors
Learn about vectors and tensors.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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?