How to check if a ,MDF file is unsorted?

8 visualizaciones (últimos 30 días)
Serbring
Serbring el 6 de Oct. de 2019
Comentada: Serbring el 29 de Oct. de 2019
Hi all,
I am trying to read on matlab several .MDF files. All of them are exported with the some tool and for some reasons, some of them are unsorted. I need to know which files are unsorted. Is there any way to do that?
Here is my code. If a file is unsorted I get an error when I read the file, so I added the two lines which sort the files (the two under comment), but in that case, if the file is sorted, I get an error at the mdfSort function. By knowing which files are unsorted, I can solve the problem with a If-statement.
for iFile=1:length(MDFFile)
Duration=-1;
% sortedPath = mdfSort([MDFFolder MDFFile(iFile).name],'SortedMDFFile.mdf');
% mdfObj = mdf('SortedMDFFile.mf4');
mdfObj = mdf([MDFFolder MDFFile(iFile).name]);
if isempty(mdfObj.ChannelNames)==0
chlist = channelList(mdfObj);
chlistS=table2struct(chlist);
chlistName=convertStringsToChars([chlistS.ChannelName]);
for iSig=1:length(Signals2Load)
iCh=find(strcmp(chlistName,Signals2Load{iSig}));
if isempty(iCh)==0
data = read(mdfObj,chlistS(min(iCh)).ChannelGroupNumber,Signals2Load{iSig});
if Duration<0
Duration=seconds(floor(max(data.Time)));
CanData(iFile).Time=[0:TS:Duration];
end
CanData(iFile).(Signals2Load{iSig})=pchip(seconds(data.Time),data.(Signals2Load{iSig}),CanData(iFile).Time);
end
end
else
warning(['Problems in loading ' MDFFile(iFile).name])
end
end
  2 comentarios
Walter Roberson
Walter Roberson el 6 de Oct. de 2019
Perhaps you should use a try/catch ?
Serbring
Serbring el 6 de Oct. de 2019
Probably I have to. I do not like that much try/catch. In my opinion, it is not a synonim of good practice. Thanks.

Iniciar sesión para comentar.

Respuesta aceptada

Elliott Blocha
Elliott Blocha el 29 de Oct. de 2019
The MDF file format specifies that "finalized" MDF files must start with "MDF " in the first 8 bytes (including the 5 spaces). In hex this is:
4D 44 46 20 20 20 20 20
Unfinalized (including unsorted) MDF files have "UnFinMF " in the first 8 bytes (including the 1 space). In hex this is:
55 6E 46 69 6E 4D 46 20
Look into the "fopen" and "fread" functions to check for the "finalized" flag.
mdfSort might already do this check, so it may be faster to use a try/catch statement.

Más respuestas (0)

Categorías

Más información sobre Vehicle Calibration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by