Home > FMAToolbox > Database > DBListVariables.m

DBListVariables

PURPOSE ^

DBListVariables - List variables matching certain criteria.

SYNOPSIS ^

function DBListVariables(query)

DESCRIPTION ^

DBListVariables - List variables matching certain criteria.

  USAGE

    DBListVariables(query)

    query          optional database query (WHERE clause)

  EXAMPLE

    DBListVariables('name="Spectrogram"');

  SEE

    See also DBGetVariables, DBGetFigures.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function DBListVariables(query)
0002 
0003 %DBListVariables - List variables matching certain criteria.
0004 %
0005 %  USAGE
0006 %
0007 %    DBListVariables(query)
0008 %
0009 %    query          optional database query (WHERE clause)
0010 %
0011 %  EXAMPLE
0012 %
0013 %    DBListVariables('name="Spectrogram"');
0014 %
0015 %  SEE
0016 %
0017 %    See also DBGetVariables, DBGetFigures.
0018 %
0019 
0020 % Copyright (C) 2013 by Michaƫl Zugaro
0021 %
0022 % This program is free software; you can redistribute it and/or modify
0023 % it under the terms of the GNU General Public License as published by
0024 % the Free Software Foundation; either version 3 of the License, or
0025 % (at your option) any later version.
0026 
0027 % Make sure MyM is installed and functional
0028 CheckMyM;
0029 
0030 if nargin < 1,
0031     query = '';
0032 end
0033 
0034 DBDisplay(DBGetVariables(query,'output','keys'));

Generated on Fri 16-Mar-2018 13:00:20 by m2html © 2005