How to use colormap?
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
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
MAITHILI MOHANTY
on 19 Aug 2016
KSSV
on 19 Aug 2016
I already mentioned that ....conc must be a a matrix. Attach excel here..
MAITHILI MOHANTY
on 20 Aug 2016
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!