Effacer les filtres
Effacer les filtres

how to find certain values in cells ?

1 vue (au cours des 30 derniers jours)
Leonardo Wayne
Leonardo Wayne le 18 Avr 2016
Commenté : Ghost le 20 Avr 2016
see attached.
I am using xlsread to load data from an xls file into matlab as a cell. I would like to return all the cell values in the first column starting from row 15 until the first NaN into a variable called "List"(of type cell or integer preferably).

Réponse acceptée

Ghost
Ghost le 18 Avr 2016
Define your sheet and xlrange something similar to this
for f = 1:end;
A(:,f) = ALL(:,f);
sheet = 1;
xlRange = 'A2';
xlswrite(Exel_filename,A,sheet,xlRange)
end
  3 commentaires
Leonardo Wayne
Leonardo Wayne le 18 Avr 2016
never mind that I have found a way around it :)
Ghost
Ghost le 20 Avr 2016
Will be good if you can share how did you solve it.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Environment and Settings dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by