How to handle 2 different colorbar in a single figure?

Hi, Sorry, I am a biginner. I would like to superimposed a scatter plot on a bathymetric map. My problem is that my colorbar shows the different bathymetric levels and not the colors of my vector "day" of the scatter plot. Any ideas? thanks
figure m_proj('mercator', 'longitudes',[-70 0], 'latitudes' ,[48 70]); m_gshhs_l('patch',[0.7 0.7 0.7],'edgecolor','k'); m_grid; m_tbase('contour',[-3500:1000:-500],'Edgecolor',[.5 .5 .5]); hold on m_scatter(LONGITUDE,LATITUDE,20,day,'filled'); colorbar

3 Comments

Most people don't try to read code that isn't formatted (marked-up)!
if true
figure
m_proj('mercator', 'longitudes',[-70 0], 'latitudes' ,[48 70]);
m_gshhs_l('patch',[0.7 0.7 0.7],'edgecolor','k'); m_grid;
m_tbase('contour',[-3500:1000:-500],'Edgecolor',[.5 .5 .5]);
hold on m_scatter(LONGITUDE,LATITUDE,20,day,'filled');
colorbar
end
What are all those functions named m_...?

Sign in to comment.

Categories

Tags

Asked:

on 28 Mar 2013

Community Treasure Hunt

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

Start Hunting!