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