Actually I can read the value and plot them simply like this
PathFileName=uigetfile(["*.csv"]);
//Get data from csv-file with European formating (, separator) and , as decimal
data = csvRead(PathFileName,';',',');
//Remove first line
data = data(2:$,:);
//Remove empty lines
data_values = data(data(:,1) <> "", :);
NbLine = size(data_values);
timestamps_str = data(:,1);
CPU = data(:,2);
Memory = data(:,3);
ReadKb = data(:,4);
WriteKb = data(:,5);
f = scf();
plot(CPU,'b');
title("CPU")
Now I would like to add the Timestamp from my csv to make the x axis.
I don’t understand in the plot function how to do this.
Great it works but on the x axis there is no label
PathFileName=uigetfile(["*.csv"]);
ts = readtimeseries(PathFileName)
stackedplot(ts)
On the screen below you can see that the value are loaded successfully. But the timestamp don't appears on the x axis. Is there a solution to set the grid , every second or minute for example.
Thanks