Make image from csv files
15 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to use 3 csv files (attached) to display an image. The very large file contains depths where the rows correspond to the longitudes in the longitude file, and the columns correspond to the latitudes in the latitude file. I really don't understand how to make an image out of this.
I also need to find the deepest point.
I've imported the files as follows:
depth = importdata('mariana_depth.csv')
long = importdata('mariana_longitude.csv')
lat = importdata('mariana_latitude.csv')
0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2020 年 4 月 6 日
Example :
lat = importdata('mariana_latitude.csv')
imshow(lat,[]);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Import and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!