Read More

수직 그래프(x=n)

\begin{tikzpicture} [+preamble] \usepackage{pgfplots} \pgfplotsset{compat=newest} [/preamble] \begin{axis}[ ticks=none, xmin=-1, xmax=5, ymin=-1, ymax=5, axis lines=middle, xlabel=$w$, ylabel=$r$, disabledatascaling] \draw[line width=0.5mm]…
Read More

Sine(싸인) 그래프

    \begin{tikzpicture} [+preamble] \usepackage{pgfplots} \pgfplotsset{compat=newest} [/preamble] \begin{axis}[ ticks=none, xmin=-1*pi, xmax=5*pi, ymin=-1.5, ymax=1.5, axis lines=middle, xlabel=$t$, ylabel=$y$, disabledatascaling]…
Read More

원과 접선(3)

\begin{tikzpicture} [+preamble] \usepackage{pgfplots} \pgfplotsset{compat=newest} [/preamble] \begin{axis}[ ticks=none, xmin=-2, xmax=2, ymin=-2, ymax=2, axis equal, axis lines=middle, xlabel=$x$, ylabel=$y$, disabledatascaling]…
Read More

원과 접선(tangent line) 2

\begin{tikzpicture} [+preamble] \usepackage{pgfplots} \pgfplotsset{compat=newest} [/preamble] \pgfmathsetmacro{\tangentpoint}{sqrt(19)}% \begin{axis}[ ticks=none, xmin=-1.5, xmax=1.5, ymin=-1.5, ymax=1.5, axis equal, axis lines=middle, xlabel=$x$, ylabel=$y$,…
Read More

원과 접선(tangent line) (1)

\begin{tikzpicture} [+preamble] \usepackage{pgfplots} \pgfplotsset{compat=newest} [/preamble] \begin{axis}[xlabel=$x$,ylabel=$y$,axis lines=middle, axis line style={gray!30,latex-latex},xtick={1},ytick={1}, no marks,axis equal,xmin=-1,xmax=2,ymax=1.5,ymin=-1,enlargelimits={upper=0.1} ] \draw[thin,gray!30] (1,0) |- (0,1);…
Read More

[Tensorflow] 일주일간 진행상황

홍콩과기대 김성훈 교수님의 강의가 정말 어마어마하다. http://hunkim.github.io/ml/ 처음에 텐서플로우가 처음나왔을때 이게 뭔 소리지? 했던 부분들이 완벽히 이해되는 강좌.…

[Python] RandomGroupMaker

Machine Learning을 위해 제작한 그룹 나누기. 차원도 무한히 늘릴 수 있지만, 4차원부터는 시각화하기가 어려워 예시는 3차원으로 해보았다. 중간에…