Usage
## S3 method for class 'character':
yacas(x, verbose = FALSE, method,
retclass = c("expression", "character", "unquote"), addSemi = TRUE, ...)
## S3 method for class 'expression':
yacas(x, ...)
## S3 method for class 'function':
yacas(x, ...)
## S3 method for class 'formula':
yacas(x, ...)
## S3 method for class 'yacas':
yacas(x, ...)
Arguments
x
A yacas character string or an R
expression without terminating semicolon to be processed by yacas.
verbose
A logical value indicating verbosity of output or
"input"
to only show input to yacas but not output from yacas or
"output"
to only show output from yacas but not input to yacas.
method
method used to communicate with yacas. If "socket"
is
specified then the same yacas session is used on a sequence of calls.
If "system"
is specified then a new instance of yacas is used just
for the period of that ca
addSemi
If TRUE
a semicolon is added to the
character string sent to yacas. This can be set to FALSE
if
its known that the character string already has a trailing
semicolon. It is ignored if retclass="expression"
retclass
The class of the first component of the yacas structure.
It defaults to "expression"
but may be specified as
"character"
or "unquote"
. "unquote"
is the
same as "character"
excep
...
Additional arguments ultimately passed down to
yacas.character
.