MATLAB: Using indexing to find specific rows

indexingspecific row

I have a .CSV file that has the latitude, longitude, and elevation in three columns. I would like to bring that into my code, so if a certain longitude is typed in, then the latitude and elevation associated would be the out put. I am having problems with the import feature, and the numbers keep rounding up which is not good for what I am doing. Any help is greatly appreciated.

Best Answer

There are a number of ways to read your file.
With respect to the rounding, that is only in the display. MATLAB maintains full internal precision.
With that in mind, however, the ismembertol funciton could be useful in retrieving the desired coordinates.