Is there a way to typeset the following matrix in LaTeX?
In my attempt, I got to the following:
\begin{equation}
C=\left[\begin{array}{cccccccccc}
1 & 1 & 1 & 0 & \ldots & \ldots & -1 & -1 & -1\\
1 & 1 & 1 & 1 & \ldots & \ldots & \ldots & -1 & -1\\
1 & 1 & \ldots & 1 & 1 & \ldots & \ldots & 0 & -1\\
0 & 1 & \ldots & \ldots & 1 & 1 & \ldots & 0 & 0\\
\vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots \\
\hdotsfor{9}\cr\vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots &\vdots &\vdots \\
-1 &0 & \ldots & \ldots & 0 & 1 & 1 & 1 & 1\\
-1 & -1 & 0 & \ldots & \ldots & 0 & 1 & 1 & 1\\
-1 & -1 & -1 & \ldots & \ldots & \ldots & 0 & 1 & 1
\end{array} \right]
\end{equation}
Would like to know how to add the curly braces.

