Three dimensional plot using 4 variables

I have 4 variables Latitude,longitude,depth of maximum salinity and maximum salinity, I would like to create a 3D plot with these variables for a single month. These variables are located in netcdf file and I have extracted them using the netcdf package, I have tried the surface plots but it did not gain any output. The data is in 3Dimension from which I have converted into 2 Dimension by collecting data of the same month.

2 件のコメント

ANKUR KUMAR
ANKUR KUMAR 2017 年 12 月 22 日
Do you want 3D plot or contour plot?
MIDHILA VARNA
MIDHILA VARNA 2017 年 12 月 23 日
I need a contour plot of the variation of maximum salinity with the other 3 variables

サインインしてコメントする。

 採用された回答

ANKUR KUMAR
ANKUR KUMAR 2017 年 12 月 25 日

2 投票

For the contour plot, you can use
contour(lon,lat,salinity')
If you want the filled contour plot, then you can use
contourf(lon,lat,salinity')
If you want labels on the contour plot, then you can use clabel

3 件のコメント

MIDHILA VARNA
MIDHILA VARNA 2017 年 12 月 26 日
The plot which you specified would give the variation of maximum salinity with longitude and latitude only , I would like to show the variation of salinity with depth,latitude,longitude(3 variables), would contour3 solve this problem?
ANKUR KUMAR
ANKUR KUMAR 2017 年 12 月 26 日
編集済み: ANKUR KUMAR 2017 年 12 月 26 日
You can use surf
surf(X,Y,Z,'FaceAlpha',0.5,'EdgeColor','none';)
X and Y should be the meshgrid of latitude and longitude
And in the same fashion, you can write contour3, but you will not get filled colors in contour3 (I think).
MIDHILA VARNA
MIDHILA VARNA 2017 年 12 月 26 日
Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeContour Plots についてさらに検索

タグ

質問済み:

2017 年 12 月 22 日

編集済み:

2017 年 12 月 26 日

Community Treasure Hunt

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

Start Hunting!

Translated by