MATLAB: How to import this CSV file

csv filesexcel csv formatimport

I have this CSV files but it opens through excel so it's not a true CSV file and matlab won't import it using csvread function.
How would I import it?

Best Answer

Save the file as xls or xlsx and then use xlsread to import the parts of the file that you need
Related Question