The doc says that LU will only solve for square matrix but that both FullPivLU and QR should work for non-square matrices.
In practice there is an assert in both implementations of solve to insures the methods fails on non-square matrices.
Is it because the implementation of FullPivLU and QR is not able to deal with non-square matrix yet or is it a copy-paste error (in which case I can submit a PR) ?
The doc says that LU will only solve for square matrix but that both FullPivLU and QR should work for non-square matrices.
In practice there is an assert in both implementations of solve to insures the methods fails on non-square matrices.
Is it because the implementation of FullPivLU and QR is not able to deal with non-square matrix yet or is it a copy-paste error (in which case I can submit a PR) ?