how to find certain values in cells ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Leonardo Wayne
am 18 Apr. 2016
Kommentiert: Ghost
am 20 Apr. 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).
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/161676/image.png)
0 Kommentare
Akzeptierte Antwort
Ghost
am 18 Apr. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!