I am new to matlab. What I am trying to do is to plot the data I recorded from the phone on matlab. The data is looks like this {timestamp, value}.
The timestamp is recorded in millionseconds by calling the Java function System.currentTimeMillis(). Therefore I have two questions actually to plot it on matlab.
How can I transform the timestamp from milliseconds to date format on matlab?
How can I plot the data on matlab, where Y-axis is the value, and X-axis is the date? The graph should look like discrete dots.
Thanks a lot.