how to take input as excel file from user in matlab??

5 ビュー (過去 30 日間)
Rohit Bhoi
Rohit Bhoi 2016 年 2 月 19 日
回答済み: Walter Roberson 2016 年 2 月 19 日
I want to take excel file from user by using open dialog box.How to take it??

採用された回答

Walter Roberson
Walter Roberson 2016 年 2 月 19 日
[filename, pathname] = uigetfile({'*.xls', '*.xlsx'}, 'Pick an excel file');
fullname = fullfile(pathname, filename);
[num, txt, raw] = xlsread(fullname);

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by