Make image from csv files
조회 수: 14 (최근 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!