The Octave Forge package repository is no longer actively maintained. Please find Octave Packages at https://packages.octave.org.

Navigation

Operators and Keywords

Function List:

C++ API

Method on @symfun: rdivide (f, g)
Operator on @symfun: f ./ g

Forward slash component division of symbolic functions.

Simple example:

syms x
f(x) = [1 x sin(x)];
g(x) = [x x pi];
h = f ./ g
  ⇒ h(x) = (symfun)
      ⎡1     sin(x)⎤
      ⎢─  1  ──────⎥
      ⎣x       π   ⎦

See also: @symfun/ldivide.

Package: symbolic