feat: add declaration of "vector matricies"
Enable declaration of "1D matrices".
matrix V[5];
\Leftrightarrow
matrix V[5][1];
matrix V[5] = {1.0, 2.0, 3.0, 4.0, 5.0};
;
\Leftrightarrow
matrix V[5] = {{1.0}, {2.0}, {3.0}, {4.0}, {5.0}};
Enable declaration of "1D matrices".
matrix V[5];
\Leftrightarrow
matrix V[5][1];
matrix V[5] = {1.0, 2.0, 3.0, 4.0, 5.0};
;
\Leftrightarrow
matrix V[5] = {{1.0}, {2.0}, {3.0}, {4.0}, {5.0}};