How to read MDF Files into Matlab?
41 ビュー (過去 30 日間)
古いコメントを表示
Keith Knoll
2019 年 11 月 11 日
編集済み: Walter Roberson
2025 年 11 月 5 日 18:56
I'm attempting to read MDF (.mf4) files into Matlab workspace. I'm using the following commands:
mdfObj = mdf('datafile.MF4');
data1 = read(mdfObj);
but get the following error:
Functionality is not implemented for the MDF file.
I have the Vehicle Network Toolbox installed which I think should allow for this read command.
Can you please advise?
Thanks,
Keith
0 件のコメント
採用された回答
Urmila Rajpurohith
2019 年 11 月 14 日
The error you are encountering often occurs when the MDF file is not sorted. By applying a data sort to the file, it becomes readable.
You can use “mdfSort” function to sort the file and make the file readable.
mdfSort ('oldFile.mdf', 'newFile.mdf');
mdfObj = mdf('newFile.mdf');
data = read(mdfObj);
2 件のコメント
Andrei
2025 年 11 月 5 日 18:49
After using the mdfSort function to sort the file, the recommended way to read data from MDF files in MATLAB is mdfRead function in Vehicle Network Toolbox.
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!