Closed bentsherman closed 7 years ago
This would be useful for the whole code base. Good project for someone looking for something to fill out the remainder of the semester.
I added this feature over the break. We can tweak it as needed but it's basically done now.
Someone suggested that it would be helpful to print something for each matrix operation (if verbose output is enabled) that gives the equation and matrix dimensions, something like this:
This method is pretty straightforward, you would have to add a print statement to every matrix operation throughout the code. We could put the print statements in the matrix library functions so that they don't clutter the rest of the code, but then we would need a way to provide the variable names. You could have a "name" field in the
matrix_t
struct, I think that would cover most cases without changing the matrix API.