Make image from csv files
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
KALYAN ACHARJYA
le 6 Avr 2020
Example :
lat = importdata('mariana_latitude.csv')
imshow(lat,[]);
0 commentaires
Voir également
Catégories
En savoir plus sur Data Import and Analysis dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!