syms a b c d e f g h i jA = [a; b; c; d];a = e+f;b = g+h;c = i+j;A = subs(A)
A =
(e+f)
(g+h)
(i+j)
(d)