IRIS Toolbox Reference Manual

dbnames

List of database entries filtered by name and/or class

Syntax

List = dbnames(D,...)

Input arguments

Output arguments

Options

Description

Example

Notice the differences in the following calls to dbnames:

dbnames(d,'nameFilter=','L_')

matches all names that contain 'L_' (at the beginning, in the middle, or at the end of the string), such as 'L_A', 'DL_A', 'XL_', or just 'L_'.

dbnames(d,'nameFilter=','^L_')

matches all names that start with 'L_', suc as 'L_A' or 'L_'.

dbnames(d,'nameFilter=','^L_.')

matches all names that start with 'L_' and have at least one more character after that, such as 'L_A' (but not 'L_').