Three dimensional plot using 4 variables
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
MIDHILA VARNA
am 22 Dez. 2017
Bearbeitet: ANKUR KUMAR
am 26 Dez. 2017
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 Kommentare
Akzeptierte Antwort
ANKUR KUMAR
am 25 Dez. 2017
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 Kommentare
ANKUR KUMAR
am 26 Dez. 2017
Bearbeitet: ANKUR KUMAR
am 26 Dez. 2017
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).
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Contour Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!