How do I read a row/column which has only NaNs using importdata?
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Dates and Time en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!