How to break or split a line at NaN points in 1x15000 csv file?

Respuestas (1)

You can start with finding the position of NaN, for example:
a is your loaded data array;
then use
[m,n]=find(isNaN(a));
you can locate the position of NaN, then you can use the locations to split the array.

4 comentarios

How to split a new line after every NaN?
for example, if a=[1,2,3,4,NaN,5,6,7,8,NaN,9,10];the position is p=[5,10];then, use for loop:
temp = zeros(length(p)+1,length(a));%use a big matrix to save data since each row may have different length
for ii = 1:length(p)+1
if ii == 1
temp(ii,1:p(ii)-1) = a(1:p(ii)-1);
elseif ii == length(p)+1
temp(ii,1:length(a)-p(ii-1)) = a(p(ii-1):end);
else
temp(ii,1:p(ii)-p(ii-1)-1) = a(p(ii-1)+1:p(ii)+1);
end
end
ya thanks for the help
how to break the line after every NaN to create a new column?
Can u set an example? I don't understand.

Iniciar sesión para comentar.

Categorías

Etiquetas

Preguntada:

el 21 de Oct. de 2019

Comentada:

el 24 de Oct. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by