How to get a bathymetric map from .txt file
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kelto7
am 14 Okt. 2019
Beantwortet: Abhilash Padma
am 5 Nov. 2019
Hi, I'm not a proper user of Matlab, so I apologize for my question, maybe the answer is obvious. I have a .txt file (attached) that represents the bathymetry of a certain grid, as shown in the figure. The grid has two orthogonal coordinates, that are M (74 cells) and N (133 cells). The file organizes the depth data in this way: it considers all the 74 values along the M direction, for N=1. Then again, for N=2, the next 74 values of M direction are furnished, and go on (positive values represent water depth, negative values land ground, -999 represent no data).

My goal would be to be able to get the information of depth from .txt file and use them on a grid, in order to represent the bathymetry through a X, Y, Z scheme (then by meshgrid, contour commands). I am anyway stuck on the basic process, which is how to read the data. I would be really thankful if anyone could give a help!
0 Kommentare
Akzeptierte Antwort
Abhilash Padma
am 5 Nov. 2019
Use “fscanf” method to read data from a text file. Refer the following documentation:https://in.mathworks.com/help/matlab/ref/fscanf.html
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!