I have a text file whose content is like this:
0.00316047 0.00189992 0.00186791 0.00170366 0.00145677 0.0020697 0.00316047 0.00287378 0.00226645 1
85.1637 44.9496 59.0738 74.457 82.4159 {} 51.9875 54.7822 85.1637 1
I would like to use fscanf command in matlab to read the data from this file
as can be seen, there is an empty ele in 2nd line (i.e. {}) that I want to detect while scanning the text file and recognize it's index.
Any suggestion ?