Notation for Indexed Collections #
This file defines notation:
x[i,j,k]
for getting elementsx[i,j,k] := xi
for setting elements
Element index can either be an index or a range.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The syntax x[i,j,k]
gets the element of x : X
indexed by (i,j,k)
. It is required that there is
an instance Indexed X I E
and (i,j,k)
has type I
.
This notation also support ranges, x[:i,j₁:j₂,k]
returns a slice of x
.
Note that product is right associated thus x[i,j,k]
, x[i,(j,k)]
and x[(i,j,k)]
result in
the same expression.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.