Scilab Function

xarrows - draw a set of arrows

Calling Sequence

xarrows(nx,ny,[arsize,style])

Parameters

Description

xarrows draws a set of arrows given by nx and ny. If nx and ny are vectors, the ith arrow is defined by (nx(i),ny(i))-->(nx(i+1),ny(i+1)). If nx and ny are matrices:

nx=[xi_1 x1_2 ...; xf_1 xf_2 ...]
ny=[yi_1 y1_2 ...; yf_1 yf_2 ...]
   

the k th arrow is defined by (xi_k,yi_k)-->(xf_k,yf_k).

xarrows uses the current graphics scale which can be set by calling a high level drawing function such as plot2d.

Examples

Author