목록Tips (Utility, Computer Language, and etc.) (201)
감동, 마음이 움직이는 것
[1] argument(1개;z값)를 받아서 RGB functions을 정의해서 사용set pm3d mapset hidden3dset dgrid3d 100,100,250set palette model RGB functions r(gray), g(gray), b(gray) #밑에 정의한 r(x), g(x), b(x)를 가지고 그린다.#gray, gray, gray로 하면 그냥 linear scale이 되고, RGB값이 모두 같기 때문에 gray scale로 나타난다. theta(x) = x < 0.999 ? 1:0g(x) = 1-theta(x)r(x) = 1-theta(x) + theta(x)*( 1-x )b(x) = 1-theta(x) + theta(x)*( x )splot 'file.txt' u 1:2..
그림의 여백이 너무 많아서 캡션과의 거리가 너무 멀게 느껴졌다. 거리를 조정하고 싶었는데 \vspace{1cm}를 이용하여 여백을 넣을 수 있다는 걸 알아냈다. 같은 원리로 저 간격안에 음수를 넣으면 간격을 좁힐 수가 있다.\vspace{-1cm}
[Ref] https://mathematica.stackexchange.com/questions/46867/how-to-export-data-to-a-plain-text-fileExport["simulation_points.txt", res, "Table", "FieldSeparators" -> " " ]FilePrint["simulation_points.txt"]
http://paperjax.deviantart.com/art/Colour-Palettes-One-504675634https://www.viget.com/articles/add-colors-to-your-palette-with-color-mixinghttps://www.picmonkey.com/blog/make-a-color-palettehttps://designschool.canva.com/blog/brand-color-palette/
각각 번호를 붙일때는 align모드를 사용하고 모든 수식에 하나의 번호만 쓰고 싶을 때는 aligned를 equation mode안에서 사용한다.split을 \end{split}\raisetag{7\baselineskip} 과같이 쓰면 숫자 라벨의 위치를 조정할 수 있다.아래는 latex file이다. \documentclass[preprint, showpacs,showkeys]{revtex4-1}\usepackage{amsmath} \begin{document}Align (shouldn't use the equation mode):\begin{align}\dot{x}=& x-x^2, \\\dot{y}=& y-y^2, \\\dot{p_x}=& p_x - p_y, \\\dot{p_y}=& p_y- p_x...
https://slipp.net/questions/159각 디렉토리별 용량을 확인du -h --max-depth=1--max-depth=1 옵션: 1 depth 디렉토리까지 용량을 확인한다는 의미
http://www.cplusplus.com/reference/random/normal_distribution/http://stackoverflow.com/questions/19944111/creating-a-gaussian-random-generator-with-a-mean-and-standard-deviationhttp://stackoverflow.com/questions/2325472/generate-random-numbers-following-a-normal-distribution-in-c-chttps://en.wikipedia.org/wiki/Box%E2%80%93Muller_transform #include int main() { std::default_random_engine generato..
[출처] http://ecogeo.tistory.com/276 (더 자세한 다른 옵션도 이 사이트에서 확인 가능함) commit 취소git reset HEAD^ : 최종 커밋을 취소. 워킹트리는 보존됨. (커밋은 했으나 push하지 않은 경우 유용)git reset HEAD~2 : 마지막 2개의 커밋을 취소. 워킹트리는 보존됨.git reset --hard HEAD~2 : 마지막 2개의 커밋을 취소. index 및 워킹트리 모두 원복됨.git reset --hard ORIG_HEAD : 머지한 것을 이미 커밋했을 때, 그 커밋을 취소. (잘못된 머지를 이미 커밋한 경우 유용)git revert HEAD : HEAD에서 변경한 내역을 취소하는 새로운 커밋 발행(undo commit). (커밋을 이미 pus..
\appendix\addcontentsline{toc}{section}{Appendices}\section*{Appendices} %%%%%%%%%%%[Appendix A]%%%%%%%%%%%%%%%%\setcounter{figure}{0}\setcounter{equation}{0}%\renewcommand{\thefigure}{A\arabic{figure}}\renewcommand{\theequation}{A\arabic{equation}} \section{Evolution without mutation}