An Entity of Type: Thing, from Named Graph: http://dbpedia.org, within Data Space: dbpedia.org

In mathematics, minimum polynomial extrapolation is a sequence transformation used for convergence acceleration of vector sequences, due to Cabay and Jackson. While Aitken's method is the most famous, it often fails for vector sequences. An effective method for vector sequences is the minimum polynomial extrapolation. It is usually phrased in terms of the fixed point iteration: where is the matrix whose columns are the iterates starting at 2. The following 4 line MATLAB code segment implements the MPE algorithm:

Property Value
dbo:abstract
  • In mathematics, minimum polynomial extrapolation is a sequence transformation used for convergence acceleration of vector sequences, due to Cabay and Jackson. While Aitken's method is the most famous, it often fails for vector sequences. An effective method for vector sequences is the minimum polynomial extrapolation. It is usually phrased in terms of the fixed point iteration: Given iterates in , one constructs the matrix whose columns are the differences. Then, one computes the vector where denotes the Moore–Penrose pseudoinverse of . The number 1 is then appended to the end of , and the extrapolated limit is where is the matrix whose columns are the iterates starting at 2. The following 4 line MATLAB code segment implements the MPE algorithm: U = x(:, 2:end - 1) - x(:, 1:end - 2);c = - pinv(U) * (x(:, end) - x(:, end - 1));c(end + 1, 1) = 1;s = (x(:, 2:end) * c) / sum(c); (en)
dbo:wikiPageID
  • 17736482 (xsd:integer)
dbo:wikiPageLength
  • 1783 (xsd:nonNegativeInteger)
dbo:wikiPageRevisionID
  • 1095290564 (xsd:integer)
dbo:wikiPageWikiLink
dbp:wikiPageUsesTemplate
dcterms:subject
rdfs:comment
  • In mathematics, minimum polynomial extrapolation is a sequence transformation used for convergence acceleration of vector sequences, due to Cabay and Jackson. While Aitken's method is the most famous, it often fails for vector sequences. An effective method for vector sequences is the minimum polynomial extrapolation. It is usually phrased in terms of the fixed point iteration: where is the matrix whose columns are the iterates starting at 2. The following 4 line MATLAB code segment implements the MPE algorithm: (en)
rdfs:label
  • Minimum polynomial extrapolation (en)
owl:sameAs
prov:wasDerivedFrom
foaf:isPrimaryTopicOf
is dbo:wikiPageDisambiguates of
is dbo:wikiPageWikiLink of
is foaf:primaryTopic of
Powered by OpenLink Virtuoso    This material is Open Knowledge     W3C Semantic Web Technology     This material is Open Knowledge    Valid XHTML + RDFa
This content was extracted from Wikipedia and is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License