フィルターのクリア

import a certain text file .txt from a specific folder

22 ビュー (過去 30 日間)
Alberto Acri
Alberto Acri 2022 年 11 月 23 日
回答済み: Mathieu NOE 2022 年 11 月 23 日
I want to import a certain text file .txt from a specific folder.
In case the .txt file is saved in the current folder I open it this way:
import_txt = importdata('name of file.txt');
In my case I proceeded in this way but it is not the correct solution:
folder = 'C:\Users\Alberto\....'; % folder where the .txt file is located.
import_txt = importdata('name of file.txt', folder);

採用された回答

Jean-Baptiste Lanfrey
Jean-Baptiste Lanfrey 2022 年 11 月 23 日
You can try the fullfile function.
Something like this should work:
folder = 'C:\Users\Alberto\....'; % folder where the .txt file is located.
filename = fullfile(folder, 'name of file.txt');
import_txt = importdata(filename);

その他の回答 (1 件)

Mathieu NOE
Mathieu NOE 2022 年 11 月 23 日
hello again
for numerical arrays use readmatrix instead of importdata
folder = 'C:\Users\Alberto\....'; % folder where the .txt file is located.
import_txt = importdata(fullfile(folder, 'file.txt')); % or readmatrix

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by