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