0

我目前正在 JSXgraph 上绘制 log10 函数,但是阴影出现故障。这发生在对数、有理、平方根函数上。

截屏

Log10 函数:

var graph = board.create('functiongraph', [function (x) { return (a * ((Math.log10(b * (x - h))) / Math.log10(c)) + k); }], { id: field, strokeColor: color, highlightStrokeColor: 'yellow', strokeWidth: 2 });
    graph.on('down', function (e, i) {
        showMaster(this.id);
    });
    graphMap.set(field, graph);
    //inequality(sym, field, graph, color);
    var ineq_lower = board.create('inequality', [graph], { visible: false, strokeColor: color, fixed: true, dash: 2 });
    var ineq_upper = board.create('inequality', [graph], { inverse: true, strokeColor: color, fixed: true, dash: 2 });
4

1 回答 1

0

确实,某些功能会产生问题。对于有理函数,我看不到一个简单的解决方法。对于 log 和 sqrt 函数,您可以将定义间隔设置得稍小,使其不包含函数的临界点:

sqrt 功能:

var graph = board.create('functiongraph', [
    function (x) { return Math.sqrt(x - a.Value()); }, 
    function() { return a.Value()+0.00001; }, 
    10
]);

日志功能:

var graph = board.create('functiongraph', [
    function (x) { return a.Value()*Math.log10(x); }, 
    0.0001, 
    10
]);

只要剩下一点时间,我就会解决这个问题。

于 2019-08-19T16:17:06.623 回答