Kevin Nowaczyk
Kevin Nowaczyk
Also, in testing my new grammar, I’ve realized that, since VBA has a whole pre-compiler feature, it’s totally possible to have valid VBA files which are unable to be parsed...
My precompiler is pretty much done: https://github.com/Beakerboy/VBA-Precompiler/tree/dev
It’s possible that @Xenios91 is referring to VB_[Var]Description https://vbaplanet.com/attributes.php I have submitted a request to Microsoft to clarify this in the specification document
I’ve not used either of them extensively. The way I would do it is iterate along the nodes and if the angle is already 90°, or attached to one that...
welp...I implemented the algorithm completely independent of yours and got the exact same results. it looks like microsoft might not be following their own docs. The matching function in an...
I see a push where `isStandardBasisVector()` returns an int. Is there precedent in other places of MathPHP to return more than just True/False from a isFoo() named method? I seem...
If it’s computationally intensive, the `isFoo()` method could set a class attribute, and the getter can check if it is set and only calculate it if it is not.
If I remember, the power method returns the largest eigenvalue. You can then use this value to reformulate the matrix in a way that removes it…then rerun the power method...
@markrogoyski I believe this request is referring to the bandwidth, not the kernel. Currently the object accepts a float or null. If null, a default bandwidth is calculated and used....
@Aweptimum According to the source, it's an array of floats and is the same size as the matrix. Duplicated should be listed multiple times. When you say "it complains" what...