감동, 마음이 움직이는 것
[gnuplot] fitting script ver2 본문
Tips (Utility, Computer Language, and etc.)
[gnuplot] fitting script ver2
Struggler J. 2021. 4. 14. 16:32array A[12] #array allocate
f(x) = -a*x + b #define a fitting function
do for[i=0:10]{
M = 50+10*i
fname = sprintf('./data/M%d_mu1.1_S2_P.d', M)
fit f(x) fname u 0:(log($1)) via a, b #I used log(y) value so that the fitting is done for the exponential function
p f(x) lw 5 t '', fname u 0:(log($1)) t ""
A[i+1] = a #Save the exponent values
}
print A
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[mathematica] list of symbolic variables and check the positive or negative in the list values (0) | 2021.06.01 |
---|---|
[gnuplot] 데이터 포인트 값의 총합을 그림 그리지 않고 구하기 (0) | 2021.04.14 |
[gnuplot] array (0) | 2021.04.14 |
[latex] table에 dashed line추가하기 (vertical and horizontal lines) (0) | 2020.07.16 |
[gnuplot] gif 만들기 (0) | 2020.07.10 |