当前位置:网站首页>Preprocessing - interpolation
Preprocessing - interpolation
2022-07-07 03:45:00 【Lu 727】
1、 effect
If the function f(x) In independent variable x The function values corresponding to some discrete values are known , Then you can make an appropriate specific function p(x), bring p(x) The function value taken in these discrete values , Namely f(x) Known value of . So that you can use p(x) To estimate f(x) The function value corresponding to the independent variable between these discrete values , This method is called interpolation .
2、 Input / output description
Input : Raw data with missing values
Output : Data after adding missing values
3、matlab

x,y Is the original one-dimensional data ,xi Is the interpolation point ,method by ‘nearest’ Adjacent point interpolation ;‘linear’ linear interpolation ;‘spline’ Cubic spline interpolation ;‘pchip’ Cubic interpolation .

x,y Is the original one-dimensional coordinate data ,z Is the original height matrix ,xi,yi Is the interpolation point ,method by ‘nearest’ Adjacent point interpolation ;‘linear’ linear interpolation ;‘spline’ Cubic spline interpolation ;‘cubic’ Cubic interpolation .
4、 Modeling steps
Lagrange interpolation


Polynomial degree exceeds 7 when , Will produce serious Runge The phenomenon , Therefore, the data can be divided into multiple intervals , Interpolate independently in each interval
边栏推荐
猜你喜欢

Open3d mesh filtering

Leetcode-02 (linked list question)

链表面试常见题

Function reentry, function overloading and function rewriting are understood by yourself

Clock in during winter vacation

Enumeration general interface & enumeration usage specification

哈夫曼树基本概念

24. (ArcGIS API for JS) ArcGIS API for JS point modification point editing (sketchviewmodel)

API data interface of A-share index component data

Set static IP for raspberry pie
随机推荐
Ubuntu 20 installation des enregistrements redisjson
Jerry's phonebook acquisition [chapter]
21. (article ArcGIS API for JS) ArcGIS API for JS rectangular acquisition (sketchviewmodel)
QT 使用QToolTip 鼠标放上去显示文字时会把按钮的图片也显示了、修改提示文字样式
哈夫曼树基本概念
Code quality management
About Confidence Intervals
【C语言】 题集 of Ⅸ
源代码保密的意义和措施
如何替换模型的骨干网络(backbone)
密码学系列之:在线证书状态协议OCSP详解
How to replace the backbone of the model
MySQL的索引
RestClould ETL 社区版六月精选问答
VHDL implementation of single cycle CPU design
树莓派设置静态ip
20.(arcgis api for js篇)arcgis api for js面采集(SketchViewModel)
.net中 接口可以有默认实现了
校招行测笔试-数量关系
Open3D 网格滤波