Skip to content

Commit

Permalink
Remove stray opening bracket in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikt-ma committed Dec 29, 2020
1 parent d7fc47e commit e5b8282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapters/arrays.tex
Expand Up @@ -973,7 +973,7 @@ \section{Array Indexing}\label{array-indexing}
\begin{lstlisting}[language=modelica]
a[:, j] // Vector of the j-th column of a.
a[j] // Vector of the j-th row of a. Same as: a[j, :]
a[j : k] // Same as: {[a[j], a[j+1], $\ldots$, a[k]}
a[j : k] // Same as: {a[j], a[j+1], $\ldots$, a[k]}
a[:, j : k] // Same as: [a[:, j], a[:, j+1], $\ldots$, a[:, k]]
\end{lstlisting}
The range vector operator is just a special case of a vector expression:
Expand Down

0 comments on commit e5b8282

Please sign in to comment.