how to take input as excel file from user in matlab??
5 ビュー (過去 30 日間)
古いコメントを表示
I want to take excel file from user by using open dialog box.How to take it??
0 件のコメント
採用された回答
Walter Roberson
2016 年 2 月 19 日
[filename, pathname] = uigetfile({'*.xls', '*.xlsx'}, 'Pick an excel file');
fullname = fullfile(pathname, filename);
[num, txt, raw] = xlsread(fullname);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import from MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!