Difference between revisions of "Operations on tables"

From Dynamo
Jump to navigation Jump to search
(Created page with "The basic command to choose elements inside a table is {{docfunction|dynamo_table_grep|dtgrep}} ===Excluding sets of tags== In order to exclude a set of tags, use the flag{{...")
(No difference)

Revision as of 11:02, 23 May 2016

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,10:15]);

would explore the table t and create the output table tr.