감동, 마음이 움직이는 것
[gnuplot] for loop with filename list [file in list] 본문
Tips (Utility, Computer Language, and etc.)
[gnuplot] for loop with filename list [file in list]
Struggler J. 2018. 3. 27. 02:01list = system("cat list.d") #after making the file for data files, you can just use this
or
list = system("ls | grep arguement") # "ls" comment with "grep" showing the file names which include argument in the file name
do for[file in list] {
plot list u 1:2 w l t ''
}
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[color] (0) | 2018.03.31 |
---|---|
[gnuplot] print fitting parameter (0) | 2018.03.27 |
[c++] Gamma function in c++ (0) | 2018.03.26 |
[gnuplot] HSV to RGB (0) | 2018.03.23 |
[LaTex] line number in article model with equation (math environment) (0) | 2018.03.15 |