Scipy:将样条拟合到自定义函数而不是点

时间:2016-06-22 09:49:12

标签: python-3.x scipy

我想知道是否有一种方法可以将Spline直接拟合到函数而不是点。目前我正在手动创建函数中的点。以下是我使用的代码(简化版)

<script type="text/javascript">
    jQuery(document).ready(function($) {
        var allShorts = $('.short');
        var allLongs = $('.long');
        $('.r_more').click(function() {
            allShorts.show(); //shows all short infos
            allLongs.hide(); //hide all full infos
            var parent = $(this).parent();
            parent.hide(); //hides only one block
            parent.next().show(); //shows only one block
        });
        $('.r_less').click(function() {
            // we don't need this, as at this moment all long infos
            // should be hided, except one block
            // allLongs.hide(); //hide all full infos
            // allShorts.show(); //shows all short infos
            var parent = $(this).parent();
            parent.hide(); //hides only one block
            parent.prev().show(); //shows only one block
        });
    });
</script>

我在scipy文档中找不到任何内容。有人知道这种方法是否存在吗?感谢。

1 个答案:

答案 0 :(得分:1)

没有

您需要在某个网格上对您的函数进行采样。如果你有更多的信息而不仅仅是积分,你也可以使用它。首先,如果你可以计算导数,你也可以使用它们。