MATLAB: Symbolic Math expression simplification

circuitcomplexsymbolic

Hello,
I am trying to simplify a symbolic expression, in terms of others,for example:
syms w L C;
Z = 1j*w*L + 1/(1j*w*C)
Ok, the result is (-w^2LC + 1)/(1jwC)
The question is, for example, if I want to simplify the result so that Matlab substitutes -w^2LC+1 for a variable like 'RF1', what should I do?
The simulation I am running outputs several (more than 100) combination from a complex ckt topology, many or all the combinations results could be simplified to Freq1, IntrisicImpedance, etc.
All the Best.
Ronaldo