How to read CAN log file (.asc) more precisely

Hello, I have read the CAN log file by excuteing the code following:
>> db = canDatabase('myCANdata.dbc');
>> sigtimetable = canSignalImport('01.asc','Vector',db)
However MATLAB only keeps 3 decimal places, while my original data recorded 6 decimal places.
The time accuracy is very important to my project.
How can I read the CAN log file .asc in a higher accuracy?

 Accepted Answer

>> format long
>> db = canDatabase('myCANdata.dbc');
>> sigtimetable = canSignalImport('01.asc','Vector',db)

More Answers (0)

Categories

Find more on Data Import and Analysis in Help Center and File Exchange

Products

Release

R2021a

Asked:

on 22 Feb 2022

Answered:

on 22 Feb 2022

Community Treasure Hunt

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

Start Hunting!