SpecialDifferentiableExpression

interface SpecialDifferentiableExpression<T, out R : Expression<T>> : DifferentiableExpression<T>

A special type of DifferentiableExpression which returns typed expressions as derivatives.

Parameters

R

the type of expression this expression can be differentiated to.

Functions

Link copied to clipboard
abstract override fun derivativeOrNull(symbols: List<Symbol>): R?

Differentiates this expression by ordered collection of symbols.

Link copied to clipboard
abstract operator fun invoke(arguments: Map<Symbol, T>): T

Calls this expression from arguments.

Extensions

Link copied to clipboard
fun <T, R : Expression<T>> SpecialDifferentiableExpression<T, R>.derivative(symbols: List<Symbol>): R
fun <T, R : Expression<T>> SpecialDifferentiableExpression<T, R>.derivative(vararg symbols: Symbol): R
fun <T, R : Expression<T>> SpecialDifferentiableExpression<T, R>.derivative(name: String): R

Sources

Link copied to clipboard