Mathematical Operators

From Software Product Documentation
Revision as of 17:24, 31 December 2023 by Wikisysop (talk | contribs) (Created page with "==Using the Adjective NOT== NOT can be used with the logical AND and logical OR Example: Given a workspace containing 3 trials (*trial1.c3d, *trial2.c3d, and *trial3.c3d) A...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Using the Adjective NOT

NOT can be used with the logical AND and logical OR

Example: Given a workspace containing 3 trials (*trial1.c3d, *trial2.c3d, and *trial3.c3d)

All trials are assigned a TAG labeled WALK

  • trial1.c3d is also assigned a TAG labeled BAD
Select_Active_File
/FILE_NAME=WALK
/QUERY=BAD
;

This command results in *trial1.c3d being active

Select_Active_File
/FILE_NAME=WALK
/QUERY=NOT(BAD)
;

This command results in *trial2.c3d and *trial3.c3d being active.

Retrieved from ""