durand-kerner:通过Weierstrauss方法找到多项式的根

时间:2024-06-12 23:33:43
【文件属性】:

文件名称:durand-kerner:通过Weierstrauss方法找到多项式的根

文件大小:5KB

文件格式:ZIP

更新时间:2024-06-12 23:33:43

JavaScript

杜兰德·克纳 通过(或在Abramowitz&Stegun中称为Durand-Kerner方法)找到多项式的所有根。 这基本上是牛顿方法的推广,适用于多个根。 例子 要找到1 + 1*x - 1*x^2 : var findRoots = require ( "durand-kerner" ) var roots = findRoots ( [ 1 , 1 , - 1 ] ) // Now: // roots[0] = real part of roots // roots[1] = imaginary part of roots for ( var i = 0 ; i < roots . length ; ++ i ) { console . log ( roots [ 0 ] [ i ] + "+" + roots [ 1 ] [ i ] + "i" ) }


【文件预览】:
durand-kerner-master
----.travis.yml(94B)
----package.json(925B)
----test()
--------test.js(1KB)
----LICENSE(1KB)
----.gitignore(98B)
----README.md(2KB)
----roots.js(4KB)

网友评论