SpecialDifferentiableExpression
interface SpecialDifferentiableExpression<T, out R : Expression<T>> : DifferentiableExpression<T>
Content copied to clipboard
A special type of DifferentiableExpression which returns typed expressions as derivatives.
Parameters
R
the type of expression this expression can be differentiated to.
Functions
derivativeOrNull
Link copied to clipboard
Extensions
derivative
Link copied to clipboard
fun <T, R : Expression<T>> SpecialDifferentiableExpression<T, R>.derivative(symbols: List<Symbol>): R
Content copied to clipboard
fun <T, R : Expression<T>> SpecialDifferentiableExpression<T, R>.derivative(vararg symbols: Symbol): R
Content copied to clipboard
fun <T, R : Expression<T>> SpecialDifferentiableExpression<T, R>.derivative(name: String): R
Content copied to clipboard
Sources
common source
Link copied to clipboard