Company Events Academic NI Developer Zone Support Solutions Products & Services Contact NI MyNI

quiver (MathScript Function) (Windows, Not in Base Package)

LabVIEW 8.5 Help
August 2007

NI Part Number:
371361D-01

»View Product Info

Member of the plots class.

Syntax

quiver(u, v)

quiver(x, y, u, v)

Description

Generates a velocity plot.

Details

Examples

Inputs

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).

Details

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.

Examples

z = peaks;
[u, v] = gradient(z, 0.1, 0.1);
quiver(u, v)


Resources


 

Your Feedback! poor Poor  |  Excellent excellent   Yes No
 Document Quality? 
 Answered Your Question? 
Add Comments 1 2 3 4 5 submit