MaxRows
XTMF 1.13+
\[
A = \begin{bmatrix}
-1 & 2 \\\\
3 & -4
\end{bmatrix},
B = \begin{bmatrix}
2 & 4 \\\\
6 & 8
\end{bmatrix},
C = \begin{bmatrix}
-1 \\\\
3
\end{bmatrix},
D = \begin{bmatrix}
-1 & 3
\end{bmatrix},
E = 3.14
\]
MaxRows(Matrix) = Vector
\[
MaxRows(A) = \begin{bmatrix}
2 \\\\
3
\end{bmatrix}
\]
MaxRows(Vector) = ERROR
\[
MaxRows(C) = ERROR
\]
Caution
If executed with a vector it will throw an exception.
MaxRows(Scalar) = ERROR
\[
MaxRows(E) = ERROR
\]
Caution
If executed with a scalar it will throw an exception.