How do I read a row/column which has only NaNs using importdata?
Ältere Kommentare anzeigen
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.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Dates and Time finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!