Notation for Tensor Indexing

32 Views Asked by At

Given an $8\times 8\times 8 \times 8$ tensor $T$, what is the best terse notation for referring to the $8\times 8$ matrix formed by $T(2,3,i,j)$ for all $-1 < i < 8$ and $-1 < j < 8$. For example:

$$ T(2,3),\ T(2,3,0-7,0-7),\ T(2,3,*, *) $$

Is there a standard notation?

1

There are 1 best solutions below

0
On

I would use just regular matrix notation:

$$M \in M_{8\times8} : M_{ij} = T(2,3,i,j)$$

Or if you want you can also say:

$$M= \{T(2,3,i,j)\}_{i,j \in \{1,...,8\}}$$

I think that these two are the easiest ways to define the matrix.