> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abscissa.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# Tensors

> Learn about vectors and tensors.

## Usage

Mathsys tensors (or simply, vectors) allow you to represent arrays of values.

```ms3 theme={"dark"}
# 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
```
