Can I change the line width of the arrows in quiverm?

조회 수: 7 (최근 30일)
Brendan Hall
Brendan Hall 2023년 5월 17일
댓글: Brendan Hall 2023년 6월 9일
Hello,
I'm trying to change the line width of the arrows in the map based, axesm specifically, function quiverm. The usual quiver funciton has a linewidth LINESPEC while I'm not sure if quiverm does.
Thanks,

채택된 답변

Varun
Varun 2023년 5월 19일
Hello!
While there is no direct Name-Value argument to set "LineWidth" of the arrows of a "quiverm" plot, here's a workaround to modify the same:
load("wind","x","y","u","v")
lat = y(11:22,11:22,1);
lon = x(11:22,11:22,1);
dlat = v(11:22,11:22,1);
dlon = u(11:22,11:22,1);
figure
[latlim,lonlim] = geoquadline(lat,lon);
usamap(latlim,lonlim)
myquiverm=quiverm(lat,lon,dlat,dlon)
myquiverm =
2×1 Line array: Line (Quivers) Line (Quivers)
myquiverm(1).LineWidth=2 %for the lines
myquiverm =
2×1 Line array: Line (Quivers) Line (Quivers)
myquiverm(2).LineWidth=3 %for the arrowheads
myquiverm =
2×1 Line array: Line (Quivers) Line (Quivers)
You can store the output of the quiverm function to a variable. The variable is observed to be an array of two 'Line' objects. The first object controls the lines of the arrows, while the second one controls the arrowheads. So, modifying the LineWidth properties of these objects will alter the plot as needed. The data here has been taken from the example present in the "quiverm" documentation: https://www.mathworks.com/help/map/ref/quiverm.html#mw_bb73427a-2dad-496f-a3b7-573c1f36c527 .
Hope this helps!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by