MATLAB: From cell to date

MATLABmatlab date

I have a cell variable 201624×1 with values for date from '01/01/1994 01' until '01/01/1994 01' How do I convert these into Matlab dates
Thanks

Best Answer

datetime(yourcellarray, 'InputFormat', 'dd/MM/yyyy HH')
Related Question