unable to load .txt file. it shows the following error
22 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
load data file.txt Error using load Unable to read file 'data': no such file or directory.
1 commentaire
KSSV
le 24 Juin 2016
Are you sure that the file is available in the folder in which you are working?
Réponses (2)
Shameer Parmar
le 24 Juin 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 commentaires
Voir également
Catégories
En savoir plus sur Search Path dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!