Operations on tables

From Dynamo
Jump to navigation Jump to search

The basic command to choose elements inside a table is dtgrep

Excluding sets of tags

In order to exclude a set of tags, use the flagexclude:

tr = dtgrep(t,'exclude',[5,9,11:15]);

would explore the table t and create the output table tr, excluding any rows with tags 5,9, 11:15.