So I saved your uploaded .mat file, and load-ed its contents into my workspace like this:
load('ff.mat')
>> all(diff(val)>0,2)
ans =
0
0
0
0
0
0
0
0
0
0
0
0
0
0
So it seems that some kind of time variable is not included in this data.
s = struct( creates a structure array with the specified field and value. The field,value)value input argument can be any data type, such as a numeric, logical, character, or cell array.
-
If
valueis not a cell array, or ifvalueis a scalar cell array, thensis a scalar structure. For instance,s = struct('a',[1 2 3])creates a 1-by-1 structure, wheres.a = [1 2 3]. -
If
valueis a nonscalar cell array, thensis a structure array with the same dimensions asvalue. Each element ofscontains the corresponding element ofvalue. For example,s = struct('x',{'a','b'})returnss(1).x = 'a'ands(2).x = 'b'. -
If
valueis an empty cell array{}, thensis an empty (0-by-0) structure.