Learn R Programming

Ryacas (version 0.4.1)

Eval: Evaluate a yacas expression.

Description

Evaluate a yacas expression.

Usage

Eval(x, env = parent.frame(), ...)

Arguments

x

Object to be evaluated.

env

Environment or list in which to perform evaluation.

Not currently used.

Examples

Run this code
# NOT RUN {
Eval(yacas(expression(x*x)), list(x=2))

# same
x <- 2
Eval(yacas(expression(x*x)))

# }

Run the code above in your browser using DataLab