home products news downloads documentation support gallery online maps resellers search
TNTmips Downloads Menu

HOME

CONTACT US

CURRENT RELEASE
  TNT 2013

DEVELOPMENT VERSION
  TNT 2014

TNTmips Pro
PRIOR RELEASES
  TNT 2012

FREE SOFTWARE
  TNTmips Free
  TNTatlas
  TNTsdk

MORE DOWNLOADS
  HASP Key Driver
  Screen Recorder
  TNT Language Kits
  Sample Geodata
  TNT Scripts

DOCUMENTATION
  TNTmips Tutorials
  Tutorial Datasets
  Technical Guides
  Scripts
  Quick Guides

MORE INFO
  Download FAQs
  FTP
  Download Managers
  Find Reseller

SITE MAP


vecop.sml


# vecop.sml
# Returns output Vector object that is the logical result of two input vectors.

# Possible flag values
# Note, these used to be undocumented numeric flags that you had to add together
# Now they're a string and the Details of Insert Function will tell you what
# values are possible.  If you want to pass more than one, do it like this...
#
#		"TableRemoveDupRec,TableJoinNameStruct"
#
# "RemExRecords"  (Used to be 2)
# "TableJoinNameStruct"  (Used to be 16)
# "TableJoinStruct"  (Used to be 32)
# "TableRemoveDupRec" (Used to be 64)
vector Voperator, Vsource;
vector Vand, Vor, Vreplace, Vsubtract, Vxor;

# get the input vectors
GetInputVector(Voperator);
GetInputVector(Vsource);

# get the output vectors
GetOutputVector(Vand);
GetOutputVector(Vor);
GetOutputVector(Vreplace);
GetOutputVector(Vsubtract);
GetOutputVector(Vxor);

# now create the five output vectors
Vand = VectorAND(Voperator, Vsource);
Vor = VectorOR(Voperator, Vsource);
string flags$ = "TableRemoveDupRec";
Vreplace = VectorReplace(Voperator, Vsource, flags$);
Vsubtract = VectorSubtract(Voperator, Vsource, flags$);
Vxor = VectorXOR(Voperator, Vsource, flags$);


Back Home ©MicroImages, Inc. 2013 Published in the United States of America
11th Floor - Sharp Tower, 206 South 13th Street, Lincoln NE 68508-2010   USA
Business & Sales: (402)477-9554  Support: (402)477-9562  Fax: (402)477-9559
Business info@microimages.com  Support support@microimages.com  Web webmaster@microimages.com

25 March 2009

page update: 26 May 11