I have a spreadsheet with about 400 rows and 10 columns of data. I have it set up in MATLAB to import this sheet using readtable (since the data is not homegenous, I've found this to be the simplest method, over xlsread). The problem is, the formatting in the Excel file is causing the readtable
function to be super slow. Both the number formatting (decimal places) and the conditional formatting are affecting this.
% With formatting: 35 seconds
% Without formatting: 1 second
I would like to be able to keep the formatting in the Excel file for visualization purposes but it seems to be causing issues. Any way to fix this without having to get rid of the formatting?