How is it possible to make a brace and have something like this in a eqnarray block?

How is it possible to make a brace and have something like this in a eqnarray block?

Here's a sample document without the use of amsmath package:
\documentclass{article}
\begin{document}
\[
\alpha(x)=\left\{
\begin{array}{ll}
x\\
\frac{1}{1+e^{-kx}}\\
\frac{e^x-e^{-x}}{e^x+e^{-x}}
\end{array}
\right.
\]
\end{document}
or one with amsmath's cases environment
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\alpha(x)=\begin{cases}
x\\
\frac{1}{1+e^{-kx}}\\
\frac{e^x-e^{-x}}{e^x+e^{-x}}
\end{cases}
\]
\end{document}
\eqnarrayvs\alignon why not to useeqnarray. Then Large braces for specifying values of variables by condition as a possible duplicate, which suggests usingcasesfromamsmath. – Werner Jul 06 '13 at 16:29