How can I import an excel workbook's SHEET TITLE?

조회 수: 2 (최근 30일)
Coral Reyes
Coral Reyes 2015년 6월 22일
댓글: Coral Reyes 2015년 6월 22일
I am writing a program by importing data from an excel workbook and the final result is a figure for each sheet. I am using a for loop to generate all the figures and will like to use each sheet's name as the figure's title and file name. Is there a way I can connect both?

답변 (1개)

Jeremy
Jeremy 2015년 6월 22일
use the xlsfinfo function to read the names of all the sheets in an excel file.
  댓글 수: 1
Coral Reyes
Coral Reyes 2015년 6월 22일
So let's say I have 4 sheets and I have my figures i write
for kk=1:1:4
x=xlsread('Excel Title.xlsx', kk, 'A2:A11'); Y=xlsread('Excel Title.xlsx', kk, 'B2:B11');
hold on;
for ii=1:1:10
plot (x(ii),y(ii))
end
title('xlsinfo')?
end
how do I use that function? I am new to Matlab

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by