read text file into matlab
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Pradeep Sanjeewa
il 27 Gen 2015
Commentato: Pradeep Sanjeewa
il 27 Gen 2015
https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data
How can we read that kind of data set into matlab? I want just the numerical values. May be to a 4x200 matrix
0 Commenti
Risposta accettata
Hikaru
il 27 Gen 2015
Use textscan.
FID = fopen('iris.txt')
C_data0 = textscan(FID,'%f %f %f %f %s', 200, 'Delimiter',',')
numericVector = cell2mat(C_data0(:,1:4)) %ignores the last column of strings
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Text Files in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!