Importing alternating data points

Im trying to import every 100th value from a txt file with 4 lines of header from the 4th column within that file.
Appreciate any help.

2 comentarios

madhan ravi
madhan ravi el 9 de Dic. de 2018
upload the text file
James Towell
James Towell el 9 de Dic. de 2018
There you go

Iniciar sesión para comentar.

Respuestas (1)

Akira Agata
Akira Agata el 10 de Dic. de 2018
Like this? Using this code, you can extract every 100th value (100th, 200th,...etc) from the 4th column.
T = readtable('Dataset1_1.txt','HeaderLines',4,'ReadVariableNames',false);
data = T{100:100:end,4};

Categorías

Más información sobre Large Files and Big Data en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 9 de Dic. de 2018

Respondida:

el 10 de Dic. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by