I'm using package algorithmcx and algpseudocode to describe an algorithm in a paper.
Each function in the algorithm receive an array/list of numerical values, e.g. {x1, x2, ..., xn}.
\documentclass{article}
\usepackage{algorithm}
\usepackage{algorithmicx}
\usepackage{algpseudocode}
\begin{document}
\begin{algorithm}
\begin{algorithmic}[1]
\Statex
\Function{FUN\_NAME}{$\{x_i^j \,|\, i \in A, j \in B \}$}
....
\EndFunction%
\end{algorithmic}
\end{algorithm}
\end{document}
I don't know if the list of values/variables is represented in the right way.
I've got a look through the Web to see if there was such an accepted convention for representing an array, but I didn't find any example.
How can I represent them?
\documentclass{...}and ending with\end{document}. – egreg Nov 26 '12 at 16:55