Plot an Array of Structures

This utility will plot an array of structures.
261 Downloads
Aktualisiert 29. Jul 2011

Lizenz anzeigen

PlotAS Linear plot of an arrays of structures
This function is used to plot arrays of structures, like those recieved
from shaperead. It will autorecognize some common coordinate field
names. The user may also specify their own. It will take in all the
LineSpec and PropertyName/PropertyValue inputs plot will take. The
largest limitation of this function is it can only handle one array of
structures at a time. This is primarily to be able to correctly parse
the inputs each time. If you would like to plot multiple arrays of
structures on the same plot, you will have to call plotAS several
times.

Syntax:
plotAS(S)
plotAS(S,LineSpec)
plotAS(S,LineSpec,'PropertyName',PropertyValue)
plotAS(xname,yname,S)
plotAS(xname,yname,S,LineSpec);
plotAS(xname,yname,S,LineSpec,'PropertyName',PropertyValue);
hs = plotAS(xname,yname,S,LineSpec,'PropertyName',PropertyValue);

The following coordinate field names are auto recognized:
x y
X Y
xs ys
Xs Ys
XS YS
Lon Lat
lon lat
Lons Lats
lons lats
LON LAT
LONS LATS

Example 1: Basic Functionality
S = shaperead('usastatehi');
plotAS(S)

Example 2: Adding Linespec
S = shaperead('concord_roads');
plotAS(S(101:end))
hold on;
plotAS(S(1:100),'r')

Example 3: Specificying xfieldname and yfieldname
S.range = 0:1e3;
S.relativePower = S.range.^0.5;
plotAS('range','relativePower',S,'r')
xlabel('Range (m)');
ylabel('Relative Power')

J Sullivan, May 2011

Zitieren als

Jonathan Sullivan (2024). Plot an Array of Structures (https://www.mathworks.com/matlabcentral/fileexchange/32385-plot-an-array-of-structures), MATLAB Central File Exchange. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2011a
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Veröffentlicht Versionshinweise
1.0.0.0