Matlab Help

Associate
Joined
28 Jul 2003
Posts
1,987
Location
The Moon
I want to produce a contour plot of rainfall data in MATLAB. I would like to be able to overlay the contour of the rainfall data ontop of the map of the region so that the reader can see how the rainfall varies according to the geographical location. Does anybody know how to overlay the data onto a map in MATLAB?
 
If you can plot the too things on seperate figure try the following

hold on;
plot(. . .)
plot(. . .)
hold off;

and should plot both on the same thing
 
Back
Top Bottom