Is it possible to modify the size of the arrow heads drawn by streamslice.m?

16 visualizzazioni (ultimi 30 giorni)
I have 2-d arrays of x- and y-direction velocities (u,v). My code includes the line:
h=streamslice(u,v,7);
I would like the arrow heads that are drawn to be larger (and thus more visible).
I have only found suggestions for quiver, not streamslice.
Thanks

Risposta accettata

Salman Ahmed
Salman Ahmed il 3 Set 2021
Hi John,
There is a difference between quiver and streamslice that quiver returns a Quiver object while streamslice returns a vector of handles to the line objects. These line objects represent lines and arrows in the figure. Like any line object, the arrow properties can be modified to change Color, LineWidth, etc. Have a look at the sample code to understand better:
load wind;
s = numel(streamslice(x,y,z,u,v,w,[],[],5,'noarrows')); % number of lines only (no arrows) in streamslice
close all; % close the figure
ssobj=streamslice(x,y,z,u,v,w,[],[],5); % Open again with arrows
for i=s+1:numel(ssobj) % Iterate over the line objects pertaining to arrows
ssobj(i).LineWidth=2; % Adjust LineWidth to make arrows more visible.
end
You can try replacing your streamslice function in the above code snippet and adjust LineWidth value to suit the size of arrowhead you need.
  1 Commento
John Toole
John Toole il 6 Set 2021
Thank you for the suggestion. This gets me 90% of what I was wanting to achieve. It would be a bit nicer if I could also control the size of the arrows in addition to how thick they are displayed. LineWidth=3 results in the arrows looking like equilateral triangles rather than arrows. LineWidth=2 is okay, but not best.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Vector Fields in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by