I have data as attached. I have electron density values for different latitudes and longitudes. The latitude range (y axis) is 10 - 30 and the longitude range is 70 - 95 (x axis). Each value of latitude and longitude has a corresponding electron density value. I want a contour plot based on this data.

 채택된 답변

KSSV
KSSV 2018년 12월 10일

0 개 추천

[num,txt,raw] = xlsread('Data_oct1.xlsx') ;
lat = num(2:end,1) ;
lon = num(1,2:end) ;
A = num(2:end,2:end) ;
contour(lon,lat,A)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Contour Plots에 대해 자세히 알아보기

제품

릴리스

R2015a

질문:

2018년 12월 10일

답변:

2018년 12월 10일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by