KTUGFaq
KTUG FAQ
You will overcome the attacks of jealous associates.
FrontPage › SymPy
SymPy´Â Mathematic³ª Maple¿¡¼ ÇϵíÀÌ ½Éº¼ °è»êÀ» Áö¿øÇÏ´Â Python ¸ðµâÀÌ´Ù.
[ÆíÁý]
Python ¿¹Á¦: latexdemo.py ¶
from sympy import * from sympy.abc import x print( latex(x**2) ) print( latex(1/x) ) print( latex(Integral(x**2, x)) ) print( latex(integrate(x**2, x)) ) print( latex((1/cos(x)).series(x, 0, 6)) )
½ÇÇà °á°ú:
${x}^{2}$ $\frac{1}{x}$ $\int {x}^{2}\,dx$ $\frac{1}{3} {x}^{3}$ $1 + \frac{1}{2} {x}^{2} + \frac{5}{24} {x}^{4} + \operatorname{\mathcal{O}}\left({x}^{6}\right)$
ÀÌ °Í Âü Àç¹Ì Àֳ׿ä. ÁÁÀº Á¤º¸ °¨»çÇÕ´Ï´Ù.