フィルターのクリア

how to read a text file using dlmread that is not in matlab directory?

16 ビュー (過去 30 日間)
Saba Yousaf
Saba Yousaf 2018 年 8 月 11 日
コメント済み: Saba Yousaf 2018 年 8 月 11 日
Hi there... how to solve this error "Error using dlmread (line 122) The file 'an.text' could not be opened because: No such file or directory", as my file is located at desktop in text format. kidnly help me out to read data in this file. thanks in advance

採用された回答

Ameer Hamza
Ameer Hamza 2018 年 8 月 11 日
If it is not on MATLAB path, you can still read it by specifying the correct Absolute or relative paths. For example, the following uses an absolute path
dlmread('C:\{path_to_folder}\ann.txt')
Where 'C:' is the drive in which folder is located. Similarly, on Mac or Linux, you will need respective absolute paths.
  8 件のコメント
Ameer Hamza
Ameer Hamza 2018 年 8 月 11 日
dlmread() can't read non-numeric data. In your file, the first column contains dates. For you case, more appropriate is
data = readtable('an.txt')
Saba Yousaf
Saba Yousaf 2018 年 8 月 11 日
oky.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSearch Path についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by