Change marker color and size to non default color

조회 수: 216 (최근 30일)
C G
C G 2018년 7월 20일
댓글: Cg Gc 2019년 7월 8일
I am trying to plot a point on a map. I can make the map, plot my point, and change my style of my marker just fine. But I can't change the size or the color. I would like to make it a bit larger and purple, specifically, [.6 .2 1]. Can anyone help? Please see the attachment for what I have tried so far.
Here is the original code, which works, making my point blue.
load coastlines
figure('Color','w')%Colors the figure white.
axesm('stereo','Origin',[-90 0],'MapLatLimit',[-90 -30])
axis off;
framem on;
gridm on;
mlabel on;
plabel on;
setm(gca,'MLabelParallel',50)
geoshow(coastlat,coastlon,'DisplayType','polygon', 'FaceColor', 'white')
plot3m(-71.166,111.366,2690,'b.')
Thanks a bunch.

채택된 답변

Constantino Carlos Reyes-Aldasoro
When you plot, the color code 'b-o' is a shortcut to indicate colour (b), linestyle (-) and marker (o), in your case you are using blue dots:
plot3m(-71.166,111.366,2690,'b.')
so you can change that shortcut to whatever you want
plot3(-71.166,111.366,2690,'color', [.6 .2 1],'linestyle','none','marker','.','markersize',10 )
I tried this with plot3, but probably works the same with plot3m.
  댓글 수: 3
Steven Lord
Steven Lord 2018년 7월 21일
Add a call to hold on before you plot.
C G
C G 2018년 7월 23일
Works great. Thank you.
contourps(lat,lon,sfz,0:200:5000,'km')
cb = colorbar;
ylabel(cb,'surface elevation (m)')
%Fills in the contours. Adds a color bar and some labels
contourfps(lat,lon,sfz,0:200:5000, 'km')
hold on;
cb = colorbar;
ylabel(cb,'surface elevation (m)');
hold on;
plot (2361.1,-994.1,'color', [.0 .0 1],'linestyle','none','marker','.','markersize',15) %Law Dome
hold on;

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

vishal rawat
vishal rawat 2019년 7월 7일
How to change size of the marker with different value.
  댓글 수: 1
Cg Gc
Cg Gc 2019년 7월 8일
In this line,
plot (2361.1,-994.1,'color', [.0 .0 1],'linestyle','none','marker','.','markersize',15)
the size of the marker is indicated by 'markersize', 15. If you want it to be a bigger marker, than change the 15 to any larger number. If you want it to be smaller, than change it to any number smaller than 15.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by