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: ldivide (f, g)
Operator on @symfun: f .\ g

Component-wise backslash 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)
      ⎡        π   ⎤
      ⎢x  1  ──────⎥
      ⎣      sin(x)⎦

See also: @symfun/rdivide.

Package: symbolic