Method on @sym: ldivide (x, y)
Operator on @sym: x .\ y

Element-wise backslash division of symbolic expressions.

Example:

syms x
A = sym([1 137; 3 4])
  ⇒ A = (sym 2×2 matrix)
      ⎡1  137⎤
      ⎢      ⎥
      ⎣3   4 ⎦
B = [x pi; 2*x 8]
  ⇒ B = (sym 2×2 matrix)
      ⎡ x   π⎤
      ⎢      ⎥
      ⎣2⋅x  8⎦
A .\ B
  ⇒ ans = (sym 2×2 matrix)
      ⎡      π ⎤
      ⎢ x   ───⎥
      ⎢     137⎥
      ⎢        ⎥
      ⎢2⋅x     ⎥
      ⎢───   2 ⎥
      ⎣ 3      ⎦

See also: @sym/rdivide, @sym/mldivide.

Package: symbolic