How do I read a row/column which has only NaNs using importdata?
Afficher commentaires plus anciens
When I try to import the following data into MATLAB workspace from a space delimited text file 'test_file.txt'
0 6 NaN NaN NaN
3 6 3.7 NaN NaN
4 4 NaN NaN NaN
NaN NaN NaN NaN
using the command:
importdata('testfile.txt')
I receive the following:
0.0000 6.0000 NaN
3.0000 6.0000 3.7000
4.0000 4.0000 NaN
The rows and columns with only NaNs are not read from the file.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Dates and Time dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!