I am happily using
Code: Select all
\newcommand{\mtwo}[4]{{\left( \begin{array}{cc} #1 & #2 \\ #3 & #4 \end{array} \right)} }
\newcommand{\mthree}[9]{
{\left( \begin{array}{ccc} #1 & #2 & #3 \\ #4 & #5 & #6 \\ #7 & #8 & #9 \end{array} \right)} }
or 9 numbers.
Now, I need to deal with 4x4 matrices quite a lot, but the above tricks don't work
anymore since the maximum #9 is used.
How can I define
\mfour
that takes in 16 arguments ?Thanks!