Importing data from txt file
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Hello I have a text file: attached
I would like to take the numerical values of the first and second column and put them in matrices T and A respectively.
0 comentarios
Respuestas (1)
  Image Analyst
      
      
 el 6 de Jun. de 2014
        t = readtable('chichi_triplos_katagrafh.txt');
or use dlmread();
2 comentarios
  Image Analyst
      
      
 el 6 de Jun. de 2014
				readtable is only there after R2013b. Try importdata
M = importdata(filename, '\t', 1)
Ver también
Categorías
				Más información sobre Spreadsheets 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!