标签: multidimensional-array complexity-theory newtons-method
我一直在寻找关于牛顿raphson方法的复杂性的答案,用于在n个变量上找到多项式的根。 为简单起见,在度数大于1的多项式中没有出现变量。 例如:f(x1,x2,x3)= x1x2x3 - 3 * x1x2 + 2 * x1x3 + 4 * x2x3 -x1 + 2 * x2 + x3 + 2
谢谢:)