You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment the equation (and its derivative) is hardcoded to 2x^3 - 4x^2 + 6 as a user I would like to use a different equation or change the multipliers. So for example
floatequation(float x) {
return a * x * x * x - b * x * x + c;
}
Where 'a','b' and 'c' can be configured from a submit form.
The text was updated successfully, but these errors were encountered:
At the moment the equation (and its derivative) is hardcoded to
2x^3 - 4x^2 + 6
as a user I would like to use a different equation or change the multipliers. So for exampleWhere 'a','b' and 'c' can be configured from a submit form.
The text was updated successfully, but these errors were encountered: