Effacer les filtres
Effacer les filtres

Help: Excel manipulation in Matlab

2 vues (au cours des 30 derniers jours)
Khanh
Khanh le 16 Sep 2014
Modifié(e) : Khanh le 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

Réponse acceptée

Iain
Iain le 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 commentaires
Khanh
Khanh le 16 Sep 2014
Thanks so much.
Khanh
Khanh le 17 Sep 2014
Modifié(e) : Khanh le 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.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by