Difference between revisions of "Differentiability"

From JSXGraph Wiki
Jump to navigationJump to search
Line 15: Line 15:
  
 
var x0 = board.create('glider', [1, 0, board.defaultAxes.x], {name: 'x_0', size:4});
 
var x0 = board.create('glider', [1, 0, board.defaultAxes.x], {name: 'x_0', size:4});
var fx_0 = board.create('point', [function() { return x0.X(); }, function() { return pol(x0.X()); }], {name: '', color: 'grey', fixed: true, size:4});
+
var fx_0 = board.create('point', [function() { return x0.X(); }, function() { return pol(x0.X()); }], {name: '', color: 'grey', fixed: true, size:3});
 +
var x = board.create('glider', [1, 0, board.defaultAxes.x], {name: 'x', size:4});
 +
var fx = board.create('point', [function() { return x.X(); }, function() { return pol(x.X()); }], {name: '', color: 'grey', fixed: true, size:3});
  
 
/*
 
/*

Revision as of 19:30, 21 January 2019