From e4a23565b9077f452001f45fd0d10ade60529621 Mon Sep 17 00:00:00 2001 From: Hongyang Zhou Date: Fri, 27 Aug 2021 13:05:57 +0300 Subject: [PATCH] Add quiver example --- docs/src/man/examples.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/src/man/examples.md b/docs/src/man/examples.md index a0e18079..af695b7d 100644 --- a/docs/src/man/examples.md +++ b/docs/src/man/examples.md @@ -224,6 +224,11 @@ streamplot(data, "bx;bz") streamplot(data, "bx;bz", density=2.0, color="k", plotinterval=1.0, plotrange=[-10,10,-Inf,Inf]) ``` +- quiver (currently only for Cartesian grid) +``` +quiver(data, "ux;uy", stride=50) +``` + - streamline + contourf ``` using Batsrus, PyPlot