aThanks for the suggestion, it kind of looks like it is more of a contour plot with arrows on the lines, rather than a pure arrow plot. However, currently only single colored arrows are implemented.
If you are comfortable with Matlab scripting it would be possible to achieve something similar, by first exporting the model data to the command line. Then using "postplot(fea, ...)" to plot your background images. Create an array of point coordinates "p" where you want to make arrow, and use "v=
evalexpr('my_arrow_expr', p, fea);" to evaluate the arrow data. And finally, use the
quiver function to plot, scale, and color the arrows.