文件名称:natural-spline-interpolator:基于一组点的插值和外插
文件大小:9KB
文件格式:ZIP
更新时间:2024-07-31 12:31:41
JavaScript
介绍 这个包通过提供了内插和外推的实现。 例子 代码(不包括plotPoint函数): var interpolator = require('natural-spline-interpolator'), f = interpolator([[-2, 2], [-1, -0.5], [0, 0.5], [1.5, -1.5]]); for (x = -3; x < 3; x += 0.000001) { plotPoint(x, f(x)); } 结果: 对于错误的输入,行为是未定义的。 编码约定 代码需要使用 JSLint 进行验证。 评论在 Markdown 中。 避免构造函数(JS 是无类的),不要抛出异常(在 JS 中不是必需的)。 版本控制:major.minor.bug-fix API 的不兼容更改要求更新主要版本。 在以下位置保持最新版本:
【文件预览】:
natural-spline-interpolator-master
----plot.png(5KB)
----node_main.js(3KB)
----test.js(2KB)
----.travis.yml(68B)
----README.md(2KB)
----.gitignore(27B)
----package.json(721B)