Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
RealityV15.1Online Documentation (MoTW) Revision 7
NOTS Function (DataBasic) (m618703+nots_f.htm)
Generates the logical inverse of each element in a dynamic array.
NOTS(dynArray)
dynArray A DataBasic expression that evaluates to a dynamic array.
A dynamic array with the same structure as dynArray, but with each numeric value replaced by its logical inverse.
For details of the logical values of different types of element, refer to Logical Expressions.
If the array contains non-numeric data, the following error message appears:
Non-numeric data when numeric required; zero used.
NOT function.
ARY = @TRUE:@VM:@FALSE:@VM:0:@VM:1:@AM:"-2.7" NEWARY = NOTS(ARY)
Sets NEWARY to "0VM1VM1VM0AM0".