本文整理汇总了Python中sympy.printing.latex.LatexPrinter._print_Float方法的典型用法代码示例。如果您正苦于以下问题:Python LatexPrinter._print_Float方法的具体用法?Python LatexPrinter._print_Float怎么用?Python LatexPrinter._print_Float使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sympy.printing.latex.LatexPrinter
的用法示例。
在下文中一共展示了LatexPrinter._print_Float方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _print_Float
# 需要导入模块: from sympy.printing.latex import LatexPrinter [as 别名]
# 或者: from sympy.printing.latex.LatexPrinter import _print_Float [as 别名]
def _print_Float(self, expr):
if self._settings['mode_scientifique']:
# Gestion de l'écriture scientifique.
n = int(floor(log(expr, 10)))
s = LatexPrinter._print_Float(self, self._float_evalf(expr*10**-n))
return r"%s \times 10^{%s}" % (s, n)
s = LatexPrinter._print_Float(self, self._float_evalf(expr))
if s.startswith(r'1.0 \times '): # sympy 0.7.3
return s[11:]
elif s.startswith(r'1.0 \cdot '): # sympy 0.7.5
return s[10:]
elif r'\times' not in s:
# Ne pas supprimer un zéro de la puissance !
s = s.rstrip('0').rstrip('.')
return s
示例2: _print_Float
# 需要导入模块: from sympy.printing.latex import LatexPrinter [as 别名]
# 或者: from sympy.printing.latex.LatexPrinter import _print_Float [as 别名]
def _print_Float(self, expr):
s = LatexPrinter._print_Float(self, expr)
if "e" in s:
nombre, exposant = s.split("e")
return nombre + "\\times 10^{" + exposant.lstrip("+") + "}"
else:
return s
示例3: _print_Float
# 需要导入模块: from sympy.printing.latex import LatexPrinter [as 别名]
# 或者: from sympy.printing.latex.LatexPrinter import _print_Float [as 别名]
def _print_Float(self, expr):
# If not finite we use parent printer
if expr.is_zero:
return "0"
if not expr.is_finite:
return _LatexPrinter._print_Float(self, expr)
return self._number_to_latex(expr.evalf())