How do I read a row/column which has only NaNs using importdata?
Show older comments
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.
Accepted Answer
More Answers (0)
Categories
Find more on Dates and Time in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!