목록Tips (Utility, Computer Language, and etc.) (201)
감동, 마음이 움직이는 것
1. 머릿속에 스토리가 있고 슬라이드는 그걸 거들 뿐 2. 생각할 여지를 주어라. 상황을 설명해주어라 3. 슬라이드 사이의 연결을 주어라
http://people.clarkson.edu/~sfulton/ma132/parfrac.pdf
Using $Assumptions ={assumptions} reduce the calculation time! Also, give a neat solution without conditions.$Assumptions = {b > 0, c > 0, d > 0, \[Theta] > 0, \[Theta] 1, v > 0, i > 0, \[Lambda]b > r, r > 0, a > 0} Also, when I want to use parameter sets, it is much easier to use set.set = {\[Lambda]b -> 0.9, r -> 0.5, a -> 1, \[Theta] -> 0.05}; [Example of Usage ]IB3L = Limit[bInt, M ..
[ref]http://reference.wolfram.com/language/tutorial/LabelingThreeDimensionalGraphics.html Plot3D[x*x2+y*y, {x,0,1}, {y,0,1}, Axes -> True, AxesLabel -> {"x", "y", "z"}]`
[ref]http://reference.wolfram.com/language/ref/PlotMarkers.htmlhttps://mathematica.stackexchange.com/questions/20399/specifying-the-size-of-open-circle-plotmarkers-in-listplot Use PlotMarkers optionListPlot[{data1, data2, data3}, PlotMarkers -> Automatic]OrListPlot[{data1, data2, data3}, PlotMarkers -> {"▲", "◆", "●"}]Also, we can make a marker using "Graphics"PlotMarkers -> Graphics[{Red, Thick..
http://reference.wolfram.com/language/tutorial/ImportingAndExportingData.html Import[ NotebookDirectory[] "filename", "Table"]그리고 나서 아래와 같이 원하는 영역만 뽑아낼 수 있다. data = arr[[All, 2 ;; 3]]
https://tex.stackexchange.com/questions/223994/add-vertical-space-between-equations 수식 모드에서 여러줄의 수식을 쓰는 데, 수식이 너무 붙어 있는 것 같아 띄우고 싶을 때!\vspace{}는 안 먹더군요 ㅎㅎ.그럴땐 \\뒤에 원하는 간격 만큼을 []옵션으로 넣어주면 됩니다. 예를 들어, \begin{equation} \begin{aligned} A &= x^{abd}_D \\[1pt] B &= y^{CC}_D \\[10pt] \end{aligned} \end{equation}
set ylabel 'bla bla' offset 숫자 #원하는 간격을 숫자로 넣으면 되는데 0이 기본옵션이고 음수의 경우 라벨과 틱사이가 멀어잔더, 반대로 양수를 넣은 경우 가까워진다.
set palette defined ( 0 "#d8b365", 1 "#f5f5f5", 2 "#5ab4ac" )
set t pdfcairo enh colorset output 'fit.pdf' f(x) = a*exp(-x/b)set log y set xlab 't'set ylab 'K'do for [i=1:30] {a=300 #적당한 값으로 정해준다.theta = 0.01*iinput = sprintf('data/K_t%g.txt',theta)fit[:] f(x) input u 1:2 via a, bplot input u 1:2 w l lw 2 t '' , f(x) lw 2 t '' }