목록전체 글 (512)
감동, 마음이 움직이는 것
우히히히!!! 독일에 온지 벌써 20일나 되었다.나는 그 마만큼의 비타민을 챙겨먹었지 히힛.여기오고나서 결심한 게 있는데 일주일에 한 번은 꼭 교수님이랑 디스커션을 하겠다는거다!한국있을때도 항상 마음속으로 지키려던 건데 다 지키진 못했지만 언제나 가장 중요한 거라고 생각했고 이번만큼은 꼭 더 지키려고 노력했다. 그래서 오늘 두번쨰 디스커션을 했다. (첫 주에는 교수님이 안 계셨음.)근데 오늘 교수님이 놀라시면서 하시는 말씀이. 너는 니가 뭘해야 하는지 알고 있다. 너는 벌써 준비가 되어있다. 놀라울 정도다.엄청나게 시스티메틱하게 일을 진행하고 니ㅏ 다음 단계에 뭘해야 하는지 정확히 알고 있다. 이건 정말 놀라운 일이다. 너는 누군가의 supervisor가 되어도 될 것같다.난 충격 받았다. 정말 놀라운 ..
For fitting using gnuplot: http://gnuplot.sourceforge.net/docs_4.2/node82.htmlPrint fitting parameter:http://stackoverflow.com/questions/6593134/gnuplot-printing-fit-parameters-automaticallyhttp://gnuplot.sourceforge.net/demo/fit.html sprintf and print functions are in gunplot. a=1 b=1 f(x) = a*x + b ti = sprintf("%.2fx+%.2f", a, b) fit f(x) 'data' using 1:2 via a, b plot [0:3] f(x) t ti, "data"..
There are so many different ways to drow a point.http://www.gnuplotting.org/plotting-single-points/http://stackoverflow.com/questions/19452516/add-a-single-point-at-an-existing-plot (1) Use labelI think the most simple way is usage of empty label.set label at xPos, yPos, zPos "" point pointtype 7 pointsize 2 (2) Use standard input "-"plot '-' w p, '-' w p, '-' w p 1 2 e 1 3 e 2 4 e (3) Use speci..
"awk" calculate only for integer. If you want to calculate float, you have to use "gawk" then it works! Ref) - https://www.gnu.org/software/gawk/manual/html_node/Floating_002dpoint-Programming.html
안녕하세요. 오늘은 sorting하는 법을 포스팅하겠습니다. ㅋㅋㅋ두 가지 방법을 소개하겠습니다.1. 첫 번째는 커맨드에서 sort명령어를 사용하는 거구요.2. 다른 하나는 c++에서 algorithm의 sort함수를 이용한 방법입니다. 1. 커맨드에서 sort 명령어 사용하기많은 분들이 아시겠지만 만약에 제가 test.d라는 파일이 여러 column으로 되어 있고그 중에서 첫 번째 줄에 들어가 있는 데이터크기대로데이터를 다시 정렬하고 싶을 때sort test.d라 해주면 됩니다. 만약 test.d가1 2 54 6 33 4 92 0 1이라고 써져 있으면 sort test.d하면다음과 같이 뿌려 줍니다. 이 내용을 새로운 파일에 써주려면sort test.d > sorted_test.d라고 하면 뿌려지는 내..
How to use "awk" (it is really cool!) 1. When you want to make a new file from data file with several fields:awk '{print $1, $3}' simulation.d > total.d 2. If you want to extract certain conditioned field:awk '$1>100 && $1
http://webtoon.daum.net/webtoon/viewer/38187 가끔은 내가 가고 있는 길이 잘못되었다고. 혹은 포기해야 한다고 생각하는 건 어떤일을 시작하는것보다 더 힘들 때가 있다."포기"하는 게 더 힘들때도 있는거다.
Ref - http://unix.stackexchange.com/questions/37329/efficiently-delete-large-directory-containing-thousands-of-files When thousands of files are on one directory, it is really time consuming when delete al files.In this case, you can effectively delete use rsync (To be honest, I don't know rsync, but just enter the follow commands: mkdir empty_dir rsync -a --delete empty_dir/ yourdirectory/It wo..
Ref) https://www.hpc2n.umu.se/batchsystem/examples_scriptsRef) http://slurm.schedmd.com/sbatch.html Step 1. Make a script for a single job.You can make a script file for a single job.Below is an example script file (test.sh) test.sh #!/bin/sh #SBATCH --time=30-00:00:00 //minimum acceptable walltime (runtime), format: day-hours:minutes:seconds #SBATCH --job-name Landscape_10 //name of job shown i..
table그릴 때 셀병합, 셀분할 같은걸 이용해서 만들어야 하는 경우, Latex에서는 Multirow, Multicolumn같은 걸 이용하면 됩니다. 아래의 사이트에서 만들어서 사용해도 되구요.http://www.tablesgenerator.com/ 만약 그냥 문법을 알아서 만들고 싶다면 http://texblog.org/2012/12/21/multi-column-and-multi-row-cells-in-latex-tables/ 이 사이트를 참고하면 편할 것 같군요. 일단 설명을 드리자면 \usepackage{multirow}를 해주셔야 하구요. 나머지는 위의 사이트를 참고하는 게 더 편할 것 같군요 ㅎㅎ.제가 만든 표는 둘 다 섞어쓴거라 다소 복잡한데요. 기본적으로 위의 사이트에서 어떻게 사용하는 건..