필터 지우기
필터 지우기

Can I make a surface or colormap with latitude, longitude, and concentration using MATLAB? (photo example)

조회 수: 3 (최근 30일)
Hi there,
I am assisting in some research based on climate model outputs. I have datasets for various values (e.g. CO2 concentration, water vapor concentration) at various latitude and longitudes (of systematic intervals). I also need to create similar colored maps for latitude vs. altitude. [Picture examples are linked to below.] I basically have the datasets in txt files that are about a 20 x 20 matrix based on the lat/long intervals.
Can I create these graphs using MATLAB? How should I go about doing this?
Thank you so much!
Aaron

채택된 답변

Patrick Kalita
Patrick Kalita 2011년 8월 17일
Have you looked at the pcolor function? Here's an example:
[x,y,z] = peaks;
pcolor(x,y,z);
Based on your example pictures, you may also want to do this:
shading interp
The "vertical" picture also appears to have some contour lines:
[x,y,z] = peaks;
pcolor(x,y,z);
shading interp
hold on
contour(x,y,z, [-2, 2], 'EdgeColor', 'k');
Other commands you might want to look at: clabel, colorbar.
  댓글 수: 2
Aaron Burdick
Aaron Burdick 2011년 8월 17일
Thanks Patrick! I tried using the pcolor function. It changes my X (long) and Y (lat) vectors into matrices with min and max of -3 and 3. It also changes the Min/Max of my Z matrix to -6.5/8.07.
I need the axis values for X and Y to correctly maintain the Longtitude and Latitude values I've entered. Also I need the absolute values for matrix Z to remain unchanged, since these are gas concentrations differences and I need the color bar to reflect the actual concentration values.
Thanks again for your help!
Aaron
Patrick Kalita
Patrick Kalita 2011년 8월 19일
I was just using the PEAKS function to generate sample data. Don't use that in your actual plot. Substitute your own data for x, y, and z.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by