Jakob
Jakob
Mark, Sounds great, let me know what you think! Also let me know if you have any questions. Perhaps we should make a "plots" branch rather than have it in...
Mark, Thanks for taking to time to look through this and give such thorough feedback. I definitely understand many of the points you are making. Let me spend a bit...
Mark, I've been thinking more about your comments, and I definitely agree with a lot of your points! First, as you recommended, it makes sense to pass in the canvas...
Sounds good! I'll use this feedback to make an update. I'll give a bit more thought to appropriate terminology, but as you said, we can adjust this later.
Here is a really simple example of what I have so far plotting a modified `sin` function: ``` $function = function ($x) { return 100 + 100*sin(0.1*$x); }; ``` 
Thanks for the links! And I will definitely add in a check for the GD extension. I'm making a lot of progress, and hoping to put in a pull request...
Here are four plots generated to show how Cubic Spline Interpolation gets very effective at larger `n`. For the last case (`n=100`) the resulting graph is practically identical to the...
I have a lot of recent experience with Numerical Methods so I can tackle a lot of these. On the top of my head, we can include things like: -...
It looks like the TOMS 748 algorithm uses "a mixture of cubic, quadratic and linear (secant) interpolation". I'm actually in the process of building interpolation techniques right now, so once...
I'm having trouble with a few pretty basic things, not quite sure what is happening. When I try to execute a file in my command line, for example: `php math-php/src/Statistics/Regression/Linear.php`...