本文主要是介绍【源码】inpaint_nans函数:对二维数组中的NaN元素插值(或外推),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用非NaN数据对二维数组中的NaN元素进行插值。
Interpolate NaN elements in a 2-d array using non-NaN elements.
也可以进行外推,因为该函数不使用数据的三角测量。
Can also extrapolate, as it does not use a triangulation of the data.
Inpaint_nans提供了几种不同的插值方法,这些方法在精度、速度以及所需内存方面进行折中平衡。
Inpaint_nans offers several different approaches to the interpolation, which give tradeoffs in accuracy versus speed and memory required.
inpaint_nans中使用的所有方法都基于稀疏线性代数和PDE离散化。
All the methods currently found in inpaint_nans are based on sparse linear algebra and PDE discretizations.
从本质上讲,PDE是为了与所提供的信息保持一致而实现的解决方案。
In essence, a PDE is solved to be consistent with the information supplied.
源码下载地址:
http://page2.dfpan.com/fs/4ldc2je29231f209166/
更多精彩文章请关注微信号:
这篇关于【源码】inpaint_nans函数:对二维数组中的NaN元素插值(或外推)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!