Kevin Nowaczyk
Kevin Nowaczyk
@jakobsandberg, I like to look at the C++ boost library for advice on implementing different functions. They seem to prefer the TOMS 748 algorithm for non-derivative root finding. Is this...
I thought I'd add an unrelated comment. I saw you were having difficulty getting unit tests to work without an include statement. If you sign up for an account on...
I don't have composer installed either. When I test something from the command line I run 'php -r' and manually include the files I need in the statement with whatever...
Well, now I know what I'm doing this weekend...get on the PHP7/composer bandwagon. I just saw that Debian has PHP7 in testing.
Maybe this, rather than complicate the "base" matrix class. There could be a MasterMatrix which contains descriptive functions, like isSquare(), and getRow(). The existing Matrix class could extend this and...
There are a bunch of cases where triangle matrices are expected as well. Have you given any thought to tensors? Rank 2 tensors are represented by square matrices. Similarly, rank...
I was thinking this over as I was in bed last night. I would need a really good argument for what advantages there would be to having a special square...
If the MIT license allow, I'd say grab the determinant and inverse code from that other project I linked to and just stick it in this library. That's the only...
I'm planning on extending Matrix by two more classes. First will be a FunctionMatrix, which will be a matrix of functions. Them I'll extend this to the Jacobian Matrix, which...
I believe this suggestion has been tossed around here several times. Personally, I would love to be able to manage VBA code with git, and configure a CI tool to...