감동, 마음이 움직이는 것
[gnuplot] fitting script 본문
Tips (Utility, Computer Language, and etc.)
[gnuplot] fitting script
Struggler J. 2018. 1. 11. 02:06set t pdfcairo enh color
set output 'fit.pdf'
f(x) = a*exp(-x/b)
set log y
set xlab 't'
set ylab 'K'
do for [i=1:30] {
a=300 #적당한 값으로 정해준다.
theta = 0.01*i
input = sprintf('data/K_t%g.txt',theta)
fit[:] f(x) input u 1:2 via a, b
plot input u 1:2 w l lw 2 t '' , f(x) lw 2 t ''
}
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[gnuplot] ylabel과 ytic사이 간격 조절하기 (offset) (1) | 2018.01.23 |
---|---|
[gnuplot] constrast color set (0) | 2018.01.11 |
[python] array의 원하는 column 추출하기 (0) | 2018.01.10 |
[gnuplot] error for color axis after log scale fitting (0) | 2018.01.05 |
[python] folder안의 file이름 읽어들이기 (0) | 2018.01.05 |