감동, 마음이 움직이는 것
[gnuplot] array 본문
출처 - stackoverflow.com/questions/30749160/how-to-define-and-access-array-in-gnuplot
gnuplot> array A[3] #Array definition
gnuplot> A[1]=2
gnuplot> A[3]=4
gnuplot> print A[1]
2
gnuplot> print A #Print the array, with empty A[2]
[2,,4]
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[gnuplot] 데이터 포인트 값의 총합을 그림 그리지 않고 구하기 (0) | 2021.04.14 |
---|---|
[gnuplot] fitting script ver2 (0) | 2021.04.14 |
[latex] table에 dashed line추가하기 (vertical and horizontal lines) (0) | 2020.07.16 |
[gnuplot] gif 만들기 (0) | 2020.07.10 |
[python] making a directed network using networkx (0) | 2020.06.21 |