Skip to contents

The funtion_name equation for use in plain texts

Usage

typeset_eq_ev()

Value

A character string containing a mathematical formula

Examples

typeset_eq_ev
#> function (inline = FALSE) 
#> {
#>     if (inline) {
#>         "$E[X] = x_1p_1 + x_2p_2 + x_3p_3 ...x_np_n = \\sum_1^n{x_ip_i}$"
#>     }
#>     else {
#>         cat("$E[X] = x_1p_1 + x_2p_2 + x_3p_3 ...x_np_n = \\sum_1^n{x_ip_i}$")
#>     }
#> }
#> <bytecode: 0x5607c0690408>
#> <environment: namespace:ma206equations>