python으로 데이터를 근사 함수로 바꾸는 명령이 있다. polyfit. 대박이다! Python 3.5.2 (default, Jul 10 2019, 11:58:48) [GCC 5.4.0 20160609] on linux Type “help”, “copyright”, “credits” or “license” for more information. >>> import numpy as np >>> x=np.arange(0,4) >>> y=np.array([0,1,1.9,3.1]) >>> np.polyfit(x,y,1) array([ 1.02, -0.03]) >>> np.polyfit(x,y,2) array([0.05, 0.87, 0.02]) 인터넷에서 구한 sine 데이터로 근사 함수를…… linear approxmation 계속 읽기