MATLAB: Wild cards for variable names

variable name

Hi,
i have a series of vectors whose name start with HCE. For example: HCEcool, HCElighting, HCEth.
I would like to add them up without going through the trouble of writing them all out. Is there a wild card that would allow me to do this?
Something like HCE* for example?
Thanks!
Meli

Best Answer

s=whos('HCE*')
out={s.name}