MATLAB: Is there a method to sort a list an array of words alphabetically (natural order sorting)

MATLAB

Hi, I was wondering if there is any method to sort the words alphabetically. I know how it can be done in Java, but I assusme Matlab should be having a quicker and compact method.
Cheers, Vish

Best Answer

>> sort({'gamma', 'delta', 'alpha', 'beta'})
ans =
'alpha' 'beta' 'delta' 'gamma'