expand_log: Expand a logarithmic expression

View source: R/simplify.R

expand_logR Documentation

Expand a logarithmic expression

Description

Note that force as described at https://docs.sympy.org/latest/tutorial/simplification.html#expand-log is used meaning that some assumptions are taken.

Usage

expand_log(x)

Arguments

x

A caracas_symbol

Examples

if (has_sympy()) {
  x <- symbol('x')
  y <- symbol('y')
  z <- log(x*y)
  z
  expand_log(z)
}


caracas documentation built on Oct. 17, 2023, 5:08 p.m.