Member of the plots class.
quiver(u, v)
quiver(x, y, u, v)
Generates a velocity plot.
| Name | Description |
| x | Specifies the x-coordinates you want to plot. If x is a vector, length(x) must equal the number of columns in u and v. |
| y | Specifies the y-coordinates you want to plot. If y is a vector, length(y) must equal the number of rows in u and v. |
| u | Specifies the x-coordinates for velocity. u is a matrix. size(u) must equal size(v). |
| v | Specifies the y-coordinates for velocity. v is a matrix. size(v) must equal size(u). |
This function is not supported in the LabVIEW Run-Time Engine. This function can remain in your scripts when you build a stand-alone application or shared library, but the LabVIEW Run-Time Engine does not execute this function.
z = peaks;
[u, v] = gradient(z, 0.1, 0.1);
quiver(u, v)