How to use colormap?
8 views (last 30 days)
Show older comments
I have do a color map for latitude, longitude and arsenic concentration data. Please help me in this regard. I have 2430 data for each variable
0 Comments
Answers (1)
KSSV
on 19 Aug 2016
use surf(lon,lat,data) where lon is your longitude matrix/ array, lat is latitude matrix/array and data is your arsenic concentration matrix.
Eg:
[X,Y,Z] = peaks(25);
surf(X,Y,Z);
colorbar
3 Comments
See Also
Categories
Find more on Color and Styling in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!