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.
Missing elements (those that appear in one array, but not in the other) are treated as null.
NOT function.
ARY = @TRUE:@VM:@FALSE:@VM:0:@VM:1:@AM:"-2.7" NEWARY = NOTS(ARY)
Sets NEWARY to "0VM1VM1VM0AM0".