Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
how to covert a file of data into array
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
i have a file with comma seperated values created from a 3d array.now i want regain 3d array from text file
0 Kommentare
Antworten (2)
lafnath p
am 24 Okt. 2016
2 Kommentare
KSSV
am 24 Okt. 2016
data = load(yourtextfile) ; % load / import
iwant = [data(:,1) data(:,3) data(:,2)] ;
Jan
am 24 Okt. 2016
Please do not post clarifications as answers and corresponding answers as a comment. All details belonging to a question should be found insider the question. Thanks
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!