| ==,Basic,Basic-method {symengine} | R Documentation |
Bindings for Operators and Math Functions
Description
These are S4 methods defined for Basic, VecBasic
and DenseMatrix.
Usage
## S4 method for signature 'Basic,Basic'
e1 == e2
## S4 method for signature 'Basic,Basic'
e1 != e2
## S4 method for signature 'SymEngineDataType,SymEngineDataType'
Arith(e1, e2)
## S4 method for signature 'SymEngineDataType,vector'
Arith(e1, e2)
## S4 method for signature 'vector,SymEngineDataType'
Arith(e1, e2)
## S4 method for signature 'SymEngineDataType,missing'
e1 - e2
## S4 method for signature 'SymEngineDataType,missing'
e1 + e2
## S4 method for signature 'DenseMatrix,DenseMatrix'
x %*% y
## S4 method for signature 'VecBasic,VecBasic'
x %*% y
## S4 method for signature 'DenseMatrix,VecBasic'
x %*% y
## S4 method for signature 'DenseMatrix,vector'
x %*% y
## S4 method for signature 'VecBasic,DenseMatrix'
x %*% y
## S4 method for signature 'vector,DenseMatrix'
x %*% y
## S4 method for signature 'SymEngineDataType'
Math(x)
## S4 method for signature 'SymEngineDataType'
sinpi(x)
## S4 method for signature 'SymEngineDataType'
cospi(x)
## S4 method for signature 'SymEngineDataType'
tanpi(x)
## S4 method for signature 'SymEngineDataType'
log(x, base)
## S4 method for signature 'SymEngineDataType'
log2(x)
## S4 method for signature 'SymEngineDataType'
log10(x)
## S4 method for signature 'SymEngineDataType'
log1p(x)
## S4 method for signature 'SymEngineDataType'
expm1(x)
## S4 method for signature 'SymEngineDataType'
sum(x, ..., na.rm = FALSE)
## S4 method for signature 'SymEngineDataType'
prod(x, ..., na.rm = FALSE)
Arguments
e1, e2, x, y, base, ... |
Objects. |
na.rm |
Ignored |
Value
== and != will return a logical vector. Other
functions will return a Basic, VecBasic or DenseMatrix.
[Package symengine version 0.2.6 Index]