MATLAB: Converting .CSV file element to double

import csv

I have imported a .csv file from excel into MATLAB all fine. However I can not manage to convert the elements into any numerical type as i need to do so for analysis. Any advice?

Best Answer

You may try setting options for the readtable function as outlined in this doc:
Related Question