Moving least squares

From HandWiki
Revision as of 23:44, 6 February 2024 by Dennis Ross (talk | contribs) (link)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Moving least squares is a method of reconstructing continuous functions from a set of unorganized point samples via the calculation of a weighted least squares measure biased towards the region around the point at which the reconstructed value is requested. In computer graphics, the moving least squares method is useful for reconstructing a surface from a set of points. Often it is used to create a 3D surface from a point cloud through either downsampling or upsampling.

In numerical analysis to handle contributions of geometry where it is difficult to obtain discretizations, the moving least squares methods have also been used and generalized to solve PDEs on curved surfaces and other geometries.[1][2][3] This includes numerical methods developed for curved surfaces for solving scalar parabolic PDEs [1] [3] and vector-valued hydrodynamic PDEs.[2]

In machine learning, moving least squares methods have also been used to develop model classes and learning methods. This includes function regression methods [4] and neural network function and operator regression approaches, such as GMLS-Nets.[5]

Definition

Here is a 2D example. The circles are the samples and the polygon is a linear interpolation. The blue curve is a smooth approximation of order 3.

Consider a function [math]\displaystyle{ f: \mathbb{R}^n \to \mathbb{R} }[/math] and a set of sample points [math]\displaystyle{ S = \{ (x_i,f_i) | f(x_i) = f_i \} }[/math]. Then, the moving least square approximation of degree [math]\displaystyle{ m }[/math] at the point [math]\displaystyle{ x }[/math] is [math]\displaystyle{ \tilde{p}(x) }[/math] where [math]\displaystyle{ \tilde{p} }[/math] minimizes the weighted least-square error

[math]\displaystyle{ \sum_{i \in I} (p(x_i)-f_i)^2\theta(\|x-x_i\|) }[/math]

over all polynomials [math]\displaystyle{ p }[/math] of degree [math]\displaystyle{ m }[/math] in [math]\displaystyle{ \mathbb{R}^n }[/math]. [math]\displaystyle{ \theta(s) }[/math] is the weight and it tends to zero as [math]\displaystyle{ s\to \infty }[/math].

In the example [math]\displaystyle{ \theta(s) = e^{-s^2} }[/math]. The smooth interpolator of "order 3" is a quadratic interpolator.

See also

References

  1. 1.0 1.1 Liang, Jian; Zhao, Hongkai (January 2013). "Solving Partial Differential Equations on Point Clouds". SIAM Journal on Scientific Computing 35 (3): A1461–A1486. doi:10.1137/120869730. Bibcode2013SJSC...35A1461L. 
  2. 2.0 2.1 Gross, B. J.; Trask, N.; Kuberry, P.; Atzberger, P. J. (15 May 2020). "Meshfree methods on manifolds for hydrodynamic flows on curved surfaces: A Generalized Moving Least-Squares (GMLS) approach". Journal of Computational Physics 409: 109340. doi:10.1016/j.jcp.2020.109340. Bibcode2020JCoPh.40909340G. 
  3. 3.0 3.1 Gross, B. J.; Kuberry, P.; Atzberger, P. J. (15 March 2022). "First-passage time statistics on surfaces of general shape: Surface PDE solvers using Generalized Moving Least Squares (GMLS)" (in en). Journal of Computational Physics 453: 110932. doi:10.1016/j.jcp.2021.110932. ISSN 0021-9991. Bibcode2022JCoPh.45310932G. https://doi.org/10.1016/j.jcp.2021.110932. 
  4. Wang, Hong-Yan; Xiang, Dao-Hong; Zhou, Ding-Xuan (1 March 2010). "Moving least-square method in learning theory" (in en). Journal of Approximation Theory 162 (3): 599–614. doi:10.1016/j.jat.2009.12.002. ISSN 0021-9045. https://doi.org/10.1016/j.jat.2009.12.002. 
  5. Trask, Nathaniel; Patel, Ravi G.; Gross, Ben J.; Atzberger, Paul J. (13 September 2019). "GMLS-Nets: A framework for learning from unstructured data". arXiv:1909.05371 [cs.LG].

External links