Scale bar without axis

39 visualizzazioni (ultimi 30 giorni)
Ilmnic
Ilmnic il 27 Apr 2015
Commentato: Lee Key il 2 Ott 2020
I am looking to include a scale bar (like for maps except for a variable of my own choosing) while turning off the axis (Picture worth 100 words: See attached image). Would anyone know how to do this or point me out to the appropriate resource?

Risposta accettata

Star Strider
Star Strider il 27 Apr 2015
I strongly recommend Add a scale bar to my plot!

Più risposte (1)

Chad Greene
Chad Greene il 27 Apr 2015
Do it manually by plotting a line and adding text:
plot(1:100,cosd(1:100),'b');
hold on
plot([80 80 90],[.9 .8 .8],'k-','linewidth',3);
text(85,.8,'10 x units','horiz','center','vert','top');
text(80,.85,'0.1 y units ','horiz','right','vert','middle');
  2 Commenti
Muhammad Usman Saleem
Muhammad Usman Saleem il 14 Dic 2017
good answer
Lee Key
Lee Key il 2 Ott 2020
Hi
How to add scale bar to a map (plot) with latitudes and longitudes? I produce the map and would like to add scale bar and overlay onto the map bottom left hand corner.
Below is my code that produces the map. Would kindly appreciate your kind support.
S = gshhs('gshhs_i.b');
levels = [S.Level];
L1 = S(levels == 1);
latlim = [-20 0];
lonlim = [145 180];

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by