Question
Understanding parameters sent to Matlab quiver function
From the documentation, I saw that Color parameter can be passed to the quiver function as either
'Color', 'k'
or just
'k'
If came across some alternate calls to the quiver function:
quiver(longitude, latitude, u, v, 'Color', 'k');
quiver(longitude, latitude, u, v, 0.5, 'k');
quiver(longitude, latitude, u, v, 0, 'k');
From the documentation, I understood parameters till u,v. After running the code, I see that call with 0.5 as parameter results in arrows that are bit more dispersed than first call. Call with 0 as parameter results in just dots (no arrows).
Can someone please explain how the 0 or 0.5 params are being interpreted by the quiver function?