Wir nennen auch dieses Iterationsverfahren ein präkonditioniertes Richardson- Verfahren. Im Unterschied zu den bisherigen Betrachtungen lassen wir nun aber auch Präkonditionierungsmatrizen zu, die sich in jedem Iterationsschritt ändern dürfen. Man spricht in diesem Zusammenhang von einem pr...
Ein allgemeines Gitterunabhängigkeitsprinzip für das Newton-Verfahren bei Randwertproblemen zweiter OrdnungRecent work has established that for certain classes of nonlinear boundary value problems, the number of Newton iterations applied to the related standard discrete problem for a given tolerance ...
static double[] ComputeBestBeta(double[][] xMatrix, double[] yVector, int maxIterations, double epsilon, double jumpFactor) { int xRows = xMatrix.Length; int xCols = xMatrix[0].Length; if (xRows != yVector.Length) throw new Exception("xxx (error)"); // Initiali...