Skip to content

CLASS ndi.query

ndi.query is a class.
    obj = ndi.query


Superclasses

did.query

Properties

Property Description
searchstructure

Methods

Method Description
and add DID.QUERY objects
or search for this DID.QUERY object or that DID.QUERY object
query ndi.query/query is a constructor.
searchcellarray2searchstructure convert a search cell array to a search structure
searchstruct make a search structure from field, operation, param1, param2 inputs
to_searchstructure convert an DID.QUERY object to a set of search structures

Methods help

and - add DID.QUERY objects

C = AND(A,B) or C = A & B

  Produces a new DID.QUERY object C that is true if both DID.QUERY A and DID.QUERY B are true.

  Combines the searches from A and B into a search C. The searchstructure field of
  C will be a concatenated version of those from A and B. The query C will only pass if
  all of the characteristics of A and B are satisfied.

Help for ndi.query/and is inherited from superclass did.query

or - search for this DID.QUERY object or that DID.QUERY object

C = OR(A,B) or C = A | B

  Produces a new DID.QUERY object C that is true if either DID.QUERY A or DID.QUERY B is true.

Help for ndi.query/or is inherited from superclass did.query

query - ndi.query/query is a constructor.

obj = ndi.query

    Documentation for ndi.query/query
       doc ndi.query

searchcellarray2searchstructure - convert a search cell array to a search structure

SEARCHSTRUCT = SEARCHCELLARRAY2SEARCHSTRUCTURE(SEACHCELLARRAY)

  Converts a cell array with SEARCHCELLARRAY = {'property1',value1,'property2',value2, ...}
  into a SEARCHSTRUCT with the 'regexp' operator in the case of a character 'value' or the 'exact_number'
  operator in the case of a non-character value.

  See also: FIELDSEARCH, NDI.QUERY/DID.QUERY

Help for ndi.query.searchcellarray2searchstructure is inherited from superclass did.query

searchstruct - make a search structure from field, operation, param1, param2 inputs

SEARCHSTRUCT_OUT = SEARCHSTRUCT(FIELD, OPERATION, PARAM1, PARAM2)

  Creates search structure with the given fields FIELD, OPERATION, PARAM1, PARAM2.

  See also: FIELDSEARCH, NDI.QUERY/DID.QUERY

Help for ndi.query.searchstruct is inherited from superclass did.query

to_searchstructure - convert an DID.QUERY object to a set of search structures

SEARCHSTRUCTURE = TO_SEARCHSTRUCTURE(DID.QUERY_OBJ)

  Converts an DID.QUERY object to a set of search structures without any
  DID.QUERY dependencies (see FIELDSEARCH).

  See also: FIELDSEARCH

Help for ndi.query/to_searchstructure is inherited from superclass did.query