unable to load .txt file. it shows the following error
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
load data file.txt Error using load Unable to read file 'data': no such file or directory.
1 Commento
Risposte (2)
Shameer Parmar
il 24 Giu 2016
You can do this..
Data = textread('abc.txt', '%s', 'delimiter', '')
Make sure that the abc.txt file is present in current directory.
It will create variable 'Data' which store all data from your text file..
0 Commenti
Vedere anche
Categorie
Scopri di più su File Operations 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!