Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Roobini Vijayabalan
Roobini Vijayabalan le 21 Oct 2019
Commenté : Yuan Li le 24 Oct 2019
i have a csv file (1x15000) which needs to be splitted at specific points(NaN).

Réponses (1)

Yuan Li
Yuan Li le 21 Oct 2019
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 commentaires
Roobini Vijayabalan
Roobini Vijayabalan le 21 Oct 2019
ya thanks for the help
how to break the line after every NaN to create a new column?
Yuan Li
Yuan Li le 24 Oct 2019
Can u set an example? I don't understand.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Cell Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by