Power series - pointwise: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 1: Line 1:
<html>
nth-coefficient: <input type="text" id="input" value="1 / factorial(n)">
nth-coefficient: <input type="text" id="input" value="1 / factorial(n)">
<input type="button" value="clear all" onClick="clearAll()">
<input type="button" value="clear all" onClick="clearAll()">
</html>


<jsxgraph width="600" height="600">
<jsxgraph width="600" height="600">
Line 6: Line 8:


var p = board.create('glider', [0, 0, board.defaultAxes.x] , {name: 'x'});
var p = board.create('glider', [0, 0, board.defaultAxes.x] , {name: 'x'});
var q = board.create('point', [0, 0], {name: '', color: 'blue', trace: true});
var q = board.create('point', [0, 1], {name: '', color: 'blue', trace: true});
p.on('up', function(evt) {
p.on('up', function(evt) {



Revision as of 08:09, 7 January 2019

nth-coefficient: