Filter löschen
Filter löschen

How to omit zero value line in contourm figure

6 Ansichten (letzte 30 Tage)
chia hua
chia hua am 26 Mai 2013
Hi I want to have a contour plot without zero value line,
I have been search internet and matlab Q&A for a long time,
but can't find answer , how can I do this ?
P.S. I know contour plot can give the line interval you want to avoid zero line,but I have several figures and each one has different scale, so is there any method to omit zero line after you draw the figure ?
thank you
this is my figure link
  2 Kommentare
Artur M. G. Lourenço
Artur M. G. Lourenço am 26 Mai 2013
your image is a raster (pictorios) or vector?
chia hua
chia hua am 26 Mai 2013
Bearbeitet: Walter Roberson am 26 Mai 2013
set(gcf,'PaperPositionMode','auto')
set(hFig, 'Position', [350 200 800 800]) axesm ('stereo','Grid', 'off','MapLatLimit',[ys 90],'Origin',[90 120 0],'Frame','on','FLineWidth',2,... 'MeridianLabel','off','MLabelParallel','south','LabelRotation','off');
axis off
load coast
plotm(lat, long,'k-','color',[0.4,0.4,0.4],'LineWidth',1)
projn=[reco,reco(:,1)];
hold on
[C,h]=contourm(yy,[xx,360],projn,'k-','LineWidth',1,'LevelStep',int);
this is my code , I think it is vector..?
xx,yy : grid
projn : data

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 26 Mai 2013
Yes, it is possible to remove the 0 contour after drawing... and what if there is no contour at exactly 0 because your "int" steps ended up with the closest division being at (say) -1/10? Or -5000 depending on the scale of the data.
You are better of figuring out exactly where you want the contours, and providing that list of levels as the argument after "projn" in your call. That way you could figure out how big you want your steps to be, and you could round() the levels to "nice numbers" using what-ever algorithm you liked, and you could decide whether you just want the 0 deleted (leaving a double-width near 0) or if you want to instead center the equal-sized steps so that 0 is in the middle between two steps.

Weitere Antworten (0)

Kategorien

Mehr zu Contour Plots finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by