Help: Excel manipulation in Matlab

2 views (last 30 days)
Khanh
Khanh on 16 Sep 2014
Edited: Khanh on 17 Sep 2014
Hi,
I have some questions and hope somebody help me. I'm working with excel input data. It's in colum A, B, C , D, etc. The number of colums is not specified. It depends on users. How could I know the number of the colums on each different situation? And with a same "for loop" statement, how could I automatically execute with colums A, B, C, etc.
Khanh

Accepted Answer

Iain
Iain on 16 Sep 2014
You probably don't need a for loop:
The function "xlsread" reads in the contents of an entire sheet (ALL columns), by default, but you can also set it up so that it makes you select the region of pixels to be imported to matlab.
What you do with your 3 matrices of values & text is up to you.
[numbersonly textonly everything] =xlsread(filename,sheetno);
  2 Comments
Khanh
Khanh on 17 Sep 2014
Edited: Khanh on 17 Sep 2014
Hi lain,
Instead of using xlsread(filename, -1) to choose interactively any region of data, how could I use the following function with a variable of colum?
inputdata=xlsread('c:\thm.xlsx','sheet1','c4:c(a)')
Where, a is a colum variable. It may be 1, 2, 3, 4 or whatever. Are there any ways to execute the above function?
Khanh.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!