How do I read an excel file and plot graphs?

1 回表示 (過去 30 日間)
L K
L K 2016 年 8 月 26 日
コメント済み: L K 2016 年 8 月 26 日
fileName = 'test.xls';
a=xlsread(fileName);
These commands are not working for me. Can anyone help? I get an error that the file not found.

採用された回答

Image Analyst
Image Analyst 2016 年 8 月 26 日
'test.xls' is not in your current folder. Perhaps it's really called 'test.xlsx' or perhaps it's in a different folder. You can specify the folder it lives in and then use fullfile() to create the full file name.
folder = 'c:/whatever'
fullFileName = fullfile(folder, 'test.xls');
a = xlsread(fullFilename);
OR use the following to have the user manually locate it:
% Have user browse for a file, from a specified "starting folder."
% For convenience in browsing, set a starting folder from which to browse.
startingFolder = 'C:\Program Files\MATLAB';
if ~exist(startingFolder, 'dir')
% If that folder doesn't exist, just start in the current folder.
startingFolder = pwd;
end
% Get the name of the file that the user wants to use.
defaultFileName = fullfile(startingFolder, '*.xl*');
[baseFileName, folder] = uigetfile(defaultFileName, 'Select a file');
if baseFileName == 0
% User clicked the Cancel button.
return;
end
fullFileName = fullfile(folder, baseFileName)
a = xlsread(fullFilename);
  1 件のコメント
L K
L K 2016 年 8 月 26 日
Thanx !! Its done.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by