Closed degill closed 9 years ago
Hmmmm, seems convincing. The test is using a square matrix and so doesnt pick this up :-P Taking a look...
Yes, I had a look at the test and saw that i was not a comprehensive test ;) the if condition could not really apply for that
Hmmm, segfaults. Thats puzzling...
Try now? Note that you might need to rm -Rf ~/.jeigen
after rebuilding (or Windows equivalent). Changes:
if
as per your suggestion
Hey there,
I have a question about DenseMatrix::1034:
it checks if
thus enforcing that
which is, unless I am making a fool out of myself, the wrong condition to ask for. It rather should be
A matrix multiplication is defined as a mapping from
As an example
Thus, it is important that this.rows equals b.rows. this.cols can certainly be different from b.rows (see example)
The code goes on to allocate a DenseMatrix of the correct format
Am I wrong?