how to find certain values in cells ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Leonardo Wayne
el 18 de Abr. de 2016
Comentada: Ghost
el 20 de Abr. de 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).
0 comentarios
Respuesta aceptada
Ghost
el 18 de Abr. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!