Borrar filtros
Borrar filtros

how can i read all the columns separately from the text file?

2 visualizaciones (últimos 30 días)
ocsse
ocsse el 4 de Abr. de 2018
Respondida: ocsse el 4 de Abr. de 2018
this is my code but i don't how can i get each column separately.
% Appendix D1
fid3 = fopen('executionTime.txt');
executionTime = textscan(fid3, '%f %d', 'headerlines', 1);
fclose(fid3);
% executionTime = {1,:};
executionTime{1}{1}
here is executionTime variable:
Thank you

Respuesta aceptada

ocsse
ocsse el 4 de Abr. de 2018
try this:
executionTime{1,1} % print the first column of the file
executionTime{1,2} % print the second column of the file

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by