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

gplot (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

gplot(a, xy)

gplot(a, xy, attributes)

Description

Generates a plot of coordinates using an adjacency matrix.

Details

Examples

Inputs

Name Description
a Specifies the adjacency matrix. a is an n-by-n matrix, where n equals the number of vertices in the plot. If vertices i and j are adjacent, a(i, j) is non-zero. Otherwise, a(i, j) is zero. length(a) must equal length(xy).
xy Specifies the coordinates for each vertex. xy is an n-by-2 matrix, where n equals the number of vertices in the plot. The first and second column of xy specify the x- and y-coordinates, respectively. length(xy) must equal length(a).
attributes Specifies valid plot attributes. Order the plot attributes by color, point style, and line style. For example, 'bo-' specifies that the plot is blue, marks points with circles, and uses solid lines. attributes is a string that accepts a combination of the following values.

'b' Colors the plot blue.
'c' Colors the plot cyan.
'g' Colors the plot green.
'k' Colors the plot black.
'm' Colors the plot magenta.
'r' Colors the plot red.
'w' Colors the plot white.
'y' Colors the plot yellow.
'.' Marks points with dots.
'o' Marks points with circles.
'x' Marks points with crosses.
'+' Marks points with plus signs.
'*' Marks points with asterisks.
'-' Uses solid lines.
':' Uses dotted lines.
'-.' Uses dashed and dotted lines.
'--' Uses dashed lines.

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

a = [0, 1, 1, 1, 0, 0, 0;...
1, 0, 0, 1, 1, 0, 0;...
1, 1, 0, 1, 0, 1, 0;...
1, 1, 1, 0, 1, 1, 1;...
0, 1, 0, 1, 0, 0, 1;...
0, 0, 1, 1, 0, 0, 1;...
0, 0, 0, 1, 1, 1, 0];
xy = [-0.5 0.866; 0.5 0.866; -1 0; 0 0; 1 0; -0.5 -0.866; 0.5 -0.866];
gplot(a, xy, 'bo--')


Resources


 

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