N-th root: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 9: | Line 9: | ||
var plot2 = board.create('functiongraph', ["cbrt(x) + 1"], {withLabel: true, name:'cbrt(x)+1'}); | var plot2 = board.create('functiongraph', ["cbrt(x) + 1"], {withLabel: true, name:'cbrt(x)+1'}); | ||
var plot3 = board.create('functiongraph', [(x) => Math.pow(x, 1/3) - 1], {strokeColor: 'red', withLabel: true, name:'Math.pow(x, 1/3) - 1'}); | var plot3 = board.create('functiongraph', [(x) => Math.pow(x, 1/3) - 1], {strokeColor: 'red', withLabel: true, name:'Math.pow(x, 1/3) - 1'}); | ||
var plot4 = board.create('functiongraph', [(x) => JXG.Math.pow(x, 1/3) - 2], {strokeColor: 'red', withLabel: true, name:'JXG.Math.pow(x, 1/3) - 2'}); | |||
</jsxgraph> | </jsxgraph> |