SpecialDifferentiableExpression
interface SpecialDifferentiableExpression<T, out R : Expression<T>> : DifferentiableExpression<T> (source)
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
fun <T, R : Expression<T>> SpecialDifferentiableExpression<T, R>.derivative(vararg symbols: Symbol): R
fun <T, R : Expression<T>> SpecialDifferentiableExpression<T, R>.derivative(symbols: List<Symbol>): R
Link copied to clipboard
Differentiates this expression by ordered collection of symbols.
Link copied to clipboard
fun <T> DifferentiableExpression<T>.withDefaultArgs(defaultArgs: Map<Symbol, T>): DiffExpressionWithDefault<T>