Power series - pointwise: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 5: Line 5:


<jsxgraph width="600" height="600">
<jsxgraph width="600" height="600">
var board = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-8,8,8,-8], axis:true});
var board = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-8,8,8,-8], axis:true, showClearTraces: true});


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, 1], {name: '', color: 'blue', trace: true});
var q = board.create('point', [0, 1], {name: '', color: 'blue', trace: true, fixed: true});
 
p.on('up', function(evt) {
p.on('up', function(evt) {



Revision as of 08:10, 7 January 2019

nth-coefficient: