clvcooke / MatrixMath

A from scratch implementation of basic matrix manipulation and operations in C++
0 stars 2 forks source link

Should data members be added to the class to denote what the matrix is representing #16

Open RowanFerrabee opened 9 years ago

RowanFerrabee commented 9 years ago

We've been contemplating using matrices to represent vectors, sets of vectors, spans, etc for a while, and now that the basisForNullSpace(); function is complete we're running into our first instance of that. Should we add a few fields to the matrix class such as bool isVectorSet; bool isVector; bool isSpan; etc.? I feel like these booleans would come in very handy when working with these sets and taking the class to the next level.