Can I import this CSV file into Matlab?
Afficher commentaires plus anciens
This is the CSV file I have got however it opens through excel and won't import into Matlab using csvread function.

How would I import this?
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 24 Avr 2014
Modifié(e) : Image Analyst
le 24 Avr 2014
Use readtable():
t = readtable('trial01.csv', 'headerlines', 3);
Or if you have an old version of MATLAB, use dlmread.
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!