importing text file using uigetfile
古いコメントを表示
I'm trying to open text file using uigetfile with the data like this

and code like this
[filename, pathname] = uigetfile('*.txt', 'Open file .txt');
if isequal(filename, 0) || isequal(pathname, 0)
disp('File input canceled.');
else
data = fopen(filename,'r');
end;
anyone who can help me I would really appreciate it. Thank you
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Text Data Preparation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!