MATLAB: UTC time

MATLAButc

How to convert UTC time to time in YEAR MONTH DAY HH MM SS?
UTC is 1263403529
I need
13-Jan-2012 17:25:29

Best Answer

Grab the following file from the File Exchange:
Then call:
x = 1263403529;
y = datestr(utc2datenum(x));