Am Trying To Typeset An EQUATION That Has 3 Braces As Per The Image BELOW
(https://i.stack.imgur.com/52VXJ.jpg)
I have managed to type it using the left and right braces
Asked
Active
Viewed 234 times
1 Answers
1
Try to use amsmath's pmatrix environment instead of tabular, as described in other answers.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{pmatrix}
1 & x_1 & \cdots \\
\vdots & \vdots & \vdots
\end{pmatrix}
\begin{pmatrix}
a_1 \\
a_2\\
\vdots
\end{pmatrix}
=
\begin{pmatrix}
y_n \\
f_1 \\
\vdots
\end{pmatrix}
\end{equation)
\end{document}
johk95
- 127
-
-
@kofooye if you find this answered your question, can you accept it? Thanks :-) – johk95 Aug 15 '17 at 20:57

\documentclass{...}and ending with\end{document}. Don't post code as an image! – dexteritas Aug 06 '17 at 19:24