본문 바로가기

소프트웨어/Algorithm

Math] Spline Interpolation

참고1. https://helloworldpark.github.io/jekyll/update/2017/02/04/Spline.html


참고2. 1차원 보간 https://classroom.synonym.com/calculate-trendline-2709.html


참고1의 수학적 풀이법을 이해해 볼 것.


아파치 라이브러리 : https://stackoverflow.com/questions/37519503/how-to-use-cubic-spline-interpolation-to-get-a-curve-in-java

http://commons.apache.org/proper/commons-math/javadocs/api-3.4/org/apache/commons/math3/analysis/interpolation/AkimaSplineInterpolator.html

http://commons.apache.org/proper/commons-math/download_math.cgi

--> 해당 라이브러리는 spline 보간법에 관한 내용으로, 두 점 사이의 2차식*(점-1)개의 보간형태로 나타냄.

  현재 내가 사용하고자 하는 방법은 아님.


다항식 회귀에 관해 찾아봐야 할 듯(polynomial regression of order 3??)

http://adnoctum.tistory.com/104

https://stackoverflow.com/questions/28563361/polynomial-regression-with-apache-maths-java 

 --> 여기서 degree를 3으로 바꾸면 3차 회귀 보간이 됨. !!

'소프트웨어 > Algorithm' 카테고리의 다른 글

[Algo] Trie 간단 insert, find code  (0) 2021.04.06
[Algorithm] 0-1 Knapsack Problem  (0) 2021.04.02
Dijkstra  (0) 2015.09.20
gtk study 예정사항들  (0) 2015.09.20
week3] dijkstra(heap sort, priority queue)  (0) 2015.09.20
week2] sort, tree, heap, graph 자료구조 마무리  (0) 2015.09.20
Heap Sort  (0) 2015.09.14