MATLAB: Import and plot .CSV with timestamp

csv plottimestamp plot

I have a csv file along with timestamp and i cannot manage to plot my data correctly. My file is comma delimited, first date, then time and 3 different sensor values.. I can plot sensor values as datapoints but i need also the time.. Anyone eho can help?

Best Answer

I'm not sure what you're doing wrong since you haven't shown us what you're doing. The following may be what you're after:
t = readtable('data3.csv');
t.datetime = t.(1) + t.(2); %merge date and time into one variable
plot(t.datetime, t{:, 3:5});