목록Tips (Utility, Computer Language, and etc.) (201)
감동, 마음이 움직이는 것
[ref] http://reference.wolfram.com/language/ref/GraphicsGrid.htmlGraphicGrid를 사용하면 multiplot mode처럼 그림을 그릴 수 있다. GraphicsGrid[{{ContourPlot[ f (1 - f) p (1 - p), {u, 0, 1}, {v, 0, 1 - u}], ContourPlot[f (1 - f) p , {u, 0, 1}, {v, 0, 1 - u}], ContourPlot[f (1 - f) (1 - p), {u, 0, 1}, {v, 0, 1 - u}], ContourPlot[f (1 - f) , {u, 0, 1}, {v, 0, 1 - u}]}, {ContourPlot[f p (1 - p), {u, 0, 1}, {v, 0, 1 ..
[ref] https://mathematica.stackexchange.com/questions/101660/how-to-put-single-points-inside-the-plotPlot옵션에 Epilog -> {Blue, PointSize@Large, Point[{fpu, fpv}]}를 사용해주면 된다.StreamPlot[{u ((1 - u - v) (fu[u, v, r] + b) - d[1 - u - v, \[Beta], marginalD (1 + Exp[\[Beta] fpn])]), v ((1 - u - v) (fv[u, v, r] + b) - d[1 - u - v, \[Beta], marginalD (1 + Exp[\[Beta] fpn])])} /. {\[Beta] -> 5, r -> margi..
https://stackoverflow.com/questions/28886627/gnuplot-multiplot-size-and-scaling-of-one-plot 매번 pdfcairo에서 multiplot mode사용할 때마다 그림 크기 조절하는 게 너무 어려웠는데 드디어 알아냄. 1. 전체 그림크기는 dashed size로 조절 가능(예) set t pdfcairo enh color dashed size 2,1 set multiplot layout 1,2 2. 각 그림의 panel은 margin으로 조절가능.set lmargin 5.3set bmargin 2.5set rmargin 0.7p x set lmargin 3.5set bmargin 2.5set rmargin 2.5p x 이렇게 하면 오른쪽 ..
[1] Appendix 사용\begin{appendices}\section*{Appendix} 그림이랑 수식을 각 장마다 새로 세고 싶을 때\setcounter{figure}{0}\setcounter{equation}{0} 각 세션이 그림과 수식을 숫자가 아닌경우 A, B, C등으로 쓰고 싶을 때\renewcommand{\thefigure}{A\arabic{figure}} \renewcommand{\theequation}{A\arabic{equation}} [2] title크기 옵션 조정하기https://tex.stackexchange.com/questions/59726/change-size-of-section-subsection-subsubsection-paragraph-and-subparagraph-..
내가 그린 그림이 색약 혹은 색맹에게 어떻게 보일지 궁금하신 분들은 아래의 사이트에서 확인하실 수 있습니다. 여러색의 크레파스가 보이는 부분에 그림을 드래그하신 후 그 패널 위의 옵션을 조정하면 됩니다.http://www.color-blindness.com/coblis-color-blindness-simulator/ 색을 나타내는 데 방법에 RGB만 있는건 아닙니다. 색상은 3가지의 독립된 차원을 가지고 있는데 RGB는 3차원의 basis를 빨강, 초록, 파랑으로 잡고 다른 색들을 만들어 내는거구요. HSV같은 경우는 Hue(색상 스펙트럼을 결정합니다.) , Saturation (채도), Brightness (밝기) 이 새가지를 축으로 다른 모든 색상을 만들어 냅니다. 각각 cartesian과 cylin..
When you want to get fitting parameters, you can use "print".However, when we use "fit" in gnuplot, it also prints all iterations of calculation.It is hard to figure out where is our desired parameter value.In this case, we can use "set fit quiet" with "print parameter". Below is the example,set fit quietf(x) = a*exp(-x/b)list = system("ls |grep *.txt")i=1do for[file in list] {fit f(x) file u 1:..
list = system("cat list.d") #after making the file for data files, you can just use thisor 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 ''}
http://www.boost.org/doc/libs/1_46_0/libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/igamma.html
unset ticsset size ratio 1a=15init = 2./3final = 1.Hue(x, y) = y/(x+y)*(final-init)+initB(x,y) = (log(a*(x+y))+1)/(log(a)+1)f(x, y) = hsv2rgb( Hue(x, y), 1, B($3,$4))#data cols: coordination-x, coordination-y, coorperator density, defector densityplot 'data.d' u 1:2:(f($3,$4)/256/256):((f($3,$4)%(256*256))/256):(f($3, $4)%(256)) w rgbimage t ""
https://tex.stackexchange.com/questions/25784/why-doesnt-lineno-number-a-paragraph-when-it-is-followed-by-an-indented-equatiohttps://texblog.org/2012/02/08/adding-line-numbers-to-documents/ In case, when the paragraph includes equation with math mode, the line number does not allocate in this paragraph. To show the line number properly we have to include the following package.12\usepackage[displ..