Skip to content

feat: add declaration of "vector matricies"

Arch de Noé requested to merge feat-vector-declaration into main

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}};

Merge request reports