How can I call some line in an excell file ?
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Mallouli Marwa
 el 12 de Jun. de 2018
  
    
    
    
    
    Comentada: Mallouli Marwa
 el 13 de Jun. de 2018
            Hello
In a program Matlab I called this excell file but I want the file from line 19
without delating the other lines.
The attached file is the excell file.
Please help me.
2 comentarios
  Matt Dickson
      
 el 12 de Jun. de 2018
				You should just be able to
num = xlsread(path/to/file)
since that returns a matrix of the numeric data. You'll just have to manually offset your counter to 19. See more about xlsread here.
Respuesta aceptada
  Bob Thompson
      
 el 12 de Jun. de 2018
        "I want the file from line 19" -- What does this mean? Is there a file name on line 19? (Sorry but I can't open files on this device to look myself.) Either way you can specify how much of the file you want to read by using offsets or range specification.
rowoffset = 18;
coloffset = 0;
file = csvread(filename,rowoffset,coloffset,[19 0 19 end]);
I'm not sure if end will technically work there for the column range definition, and I'm also fairly sure that you don't want to specify a row offset and start at range 19 (pretty sure that will put you at row 37), but using it as an example of how you can do things.
If you are trying to read some data other than a numeric value you can use a similar range definition in xlsread, as csvread only interprets numeric data.
8 comentarios
  Bob Thompson
      
 el 13 de Jun. de 2018
				If you only want one value then just set [19 0 19 1] as your range.
Más respuestas (1)
Ver también
Categorías
				Más información sobre Numeric Types 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!



