I have data(31,3); column 1 is time (T), column 2 is altitude (H) and column 3 is parameter (P) I want to plot as contourf. How do I make contourf of P? as function of T and H. Thank you in advance. T is between 18 and 24, H is between 150 and 600.

답변 (1개)

Star Strider
Star Strider 2014년 4월 21일

0 개 추천

You cannot with your data. The best you can do is scatter3, stem3, or plot3. The reason is that for contour and related plots (mesh, surf), P has to be defined at every combination of T and H, in this situation meaning that P has to be a (31x31) matrix. If you can express P as a function of T and H (a regression function will work), and can then define P as a function of the output of the (31x31) matrices meshgrid will create from T and H, then you can plot contour and related plots.

카테고리

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

태그

질문:

2014년 4월 21일

답변:

2014년 4월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by