FunctionalExpressionExtendedField

open class FunctionalExpressionExtendedField<T, out A : ExtendedField<T>>(algebra: A) : FunctionalExpressionField<T, A> , ExtendedField<Expression<T>>

Functions

acos
Link copied to clipboard
common
open override fun acos(arg: Expression<T>): Expression<T>
Computes the inverse cosine of arg.
acosh
Link copied to clipboard
common
open override fun acosh(arg: Expression<T>): Expression<T>
Computes the inverse hyperbolic cosine of arg.
add
Link copied to clipboard
common
open override fun add(left: Expression<T>, right: Expression<T>): Expression<T>
Builds an Expression of addition of two another expressions.
asin
Link copied to clipboard
common
open override fun asin(arg: Expression<T>): Expression<T>
Computes the inverse sine of arg.
asinh
Link copied to clipboard
common
open override fun asinh(arg: Expression<T>): Expression<T>
Computes the inverse hyperbolic sine of arg.
atan
Link copied to clipboard
common
open override fun atan(arg: Expression<T>): Expression<T>
Computes the inverse tangent of arg.
atanh
Link copied to clipboard
common
open override fun atanh(arg: Expression<T>): Expression<T>
Computes the inverse hyperbolic tangent of arg.
binaryOperation
Link copied to clipboard
common
open fun binaryOperation(operation: String, left: Expression<T>, right: Expression<T>): Expression<T>
Dynamically invokes a binary operation with the certain name.
binaryOperationFunction
Link copied to clipboard
common
open override fun binaryOperationFunction(operation: String): (left: Expression<T>, right: Expression<T>) -> Expression<T>
Dynamically dispatches a binary operation with the certain name.
bindSymbol
Link copied to clipboard
common
open override fun bindSymbol(value: String): Expression<T>
The same as bindSymbolOrNull but throws an error if symbol could not be bound
bindSymbolOrNull
Link copied to clipboard
common
open override fun bindSymbolOrNull(value: String): Expression<T>?
Wraps a raw string to T object.
const
Link copied to clipboard
common
open override fun const(value: T): Expression<T>
Builds an Expression of constant expression that does not depend on arguments.
cos
Link copied to clipboard
common
open override fun cos(arg: Expression<T>): Expression<T>
Computes the cosine of arg.
cosh
Link copied to clipboard
common
open override fun cosh(arg: Expression<T>): Expression<T>
Computes the hyperbolic cosine of arg.
div
Link copied to clipboard
common
operator fun T.div(arg: Expression<T>): Expression<T>
operator fun Expression<T>.div(arg: T): Expression<T>
open operator fun Expression<T>.div(other: Expression<T>): Expression<T>
Division of two elements.
open operator fun Expression<T>.div(k: Number): Expression<T>
Division of this element by scalar.
divide
Link copied to clipboard
common
open override fun divide(left: Expression<T>, right: Expression<T>): Expression<T>
Builds an Expression of division an expression by another one.
exp
Link copied to clipboard
common
open override fun exp(arg: Expression<T>): Expression<T>
Computes Euler's number e raised to the power of the value arg.
leftSideNumberOperation
Link copied to clipboard
common
open fun leftSideNumberOperation(operation: String, left: Number, right: Expression<T>): Expression<T>
Dynamically invokes a binary operation with the certain name with numeric first argument.
leftSideNumberOperationFunction
Link copied to clipboard
common
open fun leftSideNumberOperationFunction(operation: String): (left: Number, right: Expression<T>) -> Expression<T>
Dynamically dispatches a binary operation with the certain name with numeric first argument.
ln
Link copied to clipboard
common
open override fun ln(arg: Expression<T>): Expression<T>
Computes the natural logarithm (base e) of the value arg.
minus
Link copied to clipboard
common
operator fun T.minus(arg: Expression<T>): Expression<T>
operator fun Expression<T>.minus(arg: T): Expression<T>
open operator fun Expression<T>.minus(other: Expression<T>): Expression<T>
Subtraction of two elements.
multiply
Link copied to clipboard
common
open override fun multiply(left: Expression<T>, right: Expression<T>): Expression<T>
Builds an Expression of multiplication of two expressions.
number
Link copied to clipboard
common
open override fun number(value: Number): Expression<T>
Wraps a number to T object.
plus
Link copied to clipboard
common
operator fun T.plus(arg: Expression<T>): Expression<T>
operator fun Expression<T>.plus(arg: T): Expression<T>
open operator fun Expression<T>.plus(other: Expression<T>): Expression<T>
Addition of two elements.
pow
Link copied to clipboard
common
open infix fun Expression<T>.pow(pow: Number): Expression<T>
Raises this value to the power pow.
power
Link copied to clipboard
common
open override fun power(arg: Expression<T>, pow: Number): Expression<T>
Raises arg to the power pow.
rightSideNumberOperation
Link copied to clipboard
common
open fun rightSideNumberOperation(operation: String, left: Expression<T>, right: Number): Expression<T>
Dynamically invokes a binary operation with the certain name with numeric second argument.
rightSideNumberOperationFunction
Link copied to clipboard
common
open fun rightSideNumberOperationFunction(operation: String): (left: Expression<T>, right: Number) -> Expression<T>
Dynamically dispatches a binary operation with the certain name with numeric first argument.
scale
Link copied to clipboard
common
open override fun scale(a: Expression<T>, value: Double): Expression<T>
Scaling an element by a scalar.
sin
Link copied to clipboard
common
open override fun sin(arg: Expression<T>): Expression<T>
Computes the sine of arg.
sinh
Link copied to clipboard
common
open override fun sinh(arg: Expression<T>): Expression<T>
Computes the hyperbolic sine of arg.
sqrt
Link copied to clipboard
common
open override fun sqrt(arg: Expression<T>): Expression<T>
Computes the square root of the value arg.
tan
Link copied to clipboard
common
open override fun tan(arg: Expression<T>): Expression<T>
Computes the tangent of arg.
tanh
Link copied to clipboard
common
open override fun tanh(arg: Expression<T>): Expression<T>
Computes the hyperbolic tangent of arg.
times
Link copied to clipboard
common
operator fun T.times(arg: Expression<T>): Expression<T>
operator fun Expression<T>.times(arg: T): Expression<T>
open operator fun Expression<T>.times(other: Expression<T>): Expression<T>
Multiplies this element by scalar.
open operator fun Number.times(other: Expression<T>): Expression<T>
Multiplication of this number by element.
open operator fun Expression<T>.times(k: Number): Expression<T>
Multiplication of this element by a scalar.
unaryMinus
Link copied to clipboard
common
open operator override fun Expression<T>.unaryMinus(): Expression<T>
The negation of this element.
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: Expression<T>): Expression<T>
Dynamically invokes a unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open override fun unaryOperationFunction(operation: String): (arg: Expression<T>) -> Expression<T>
Dynamically dispatches a unary operation with the certain name.
unaryPlus
Link copied to clipboard
common
open operator fun Expression<T>.unaryPlus(): Expression<T>
Returns this value.

Properties

algebra
Link copied to clipboard
common
val algebra: A
The algebra to provide for Expressions built.
one
Link copied to clipboard
common
open override val one: Expression<T>
The neutral element of multiplication
zero
Link copied to clipboard
common
open override val zero: Expression<T>
The neutral element of addition.

Sources

common source
Link copied to clipboard