I have a csv file which contains a column for data-time in Excel format, and two other columns which are floats; The Excel format date includes the number of days since 01-Jan-1900, so for example, 2 means 02-Jan-1900, and 365 means 30-Dec-1900, and so on.
The file looks like the following:
date,temp,value
41909.89,49.67,32
41910.67,49.16,36
41911.37,45.33,37
What is the best way to read this file and convert the date to datetime format in MATLAB?