Operations on tables

From Dynamo
Revision as of 11:02, 23 May 2016 by Daniel Castaño (talk | contribs) (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{{...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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,10:15]);

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