table.concate: Concatenates two tables in a new table. |
table.contains: Checks if a value exists in table. |
table.create: Creates a table using input arguments as values. t = table.create(X1, X2, XN) Examplet = table.create(1,'a', nil, true, [1 2 4;5 5 6]) |
table.extract: Extracts a subrange of a table by a index vector. It creates a new table t2 with 'a' and true as elements. table.extract is more convenient to use than table.subrange. Here is the same example using table.subrange: t1 = {1,[1 2 3],'a',{1},true} |
table.fieldnames: Returns a table of strings with the list of field names. |
table.find: Returns indices of the value searched. |
table.getfield: Returns value of the field in current table. |
table.getmethods: Returns methods available in a table. |
table.isfield: Checks if the field exists in current table. |
table.isstring: Returns true if all elements of the table are string. |
table.subrange: Get a sub range of a table. |