Method: Multiplication#__derivative__
- Defined in:
- lib/symcalc.rb
#__derivative__(variable: nil) ⇒ Object
475 476 477 |
# File 'lib/symcalc.rb', line 475 def __derivative__ variable: nil return @lside.derivative(variable: variable) * @rside + @lside * @rside.derivative(variable: variable) end |