yes, certainly javascript.
E.g if you scroll down
http://www.touchmathematics.org/javascripts/topics/derivatives/main.js?1309284968
you'd see things like
displayObjs.curves.y[4] = TouchMath.curve({
func: function (x) { return 1 / x; },
color: TouchMath.GREEN
});
displayObjs.curves.dy[4] = TouchMath.curve({
func: function (x) { return -1 / (x * x); },
color: TouchMath.GREEN_MED
});
displayObjs.curves.d2y[4] = TouchMath.curve({
func: function (x) { return 2 / (x * x * x); },
color: TouchMath.GREEN_LIGHT
});
defining all these functions that are plotted.
--
You received this message because you are subscribed to the Google Groups
"sage-edu" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/sage-edu/-/qzdFl4RadUgJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-edu?hl=en.