derive method

  1. @override
Expression derive(
  1. String toVar
)
override

Derives this expression with respect to the given variable.

Implementation

@override
Expression derive(String toVar) {
  // Can not derive this yet..
  // TODO Implement interval differentiation.
  throw UnimplementedError('Interval differentiation not supported yet.');
}