Home > FMAToolbox > Database > DBListFigures.m

DBListFigures

PURPOSE ^

DBListFigures - List figures matching certain criteria.

SYNOPSIS ^

function DBListFigures(query)

DESCRIPTION ^

DBListFigures - List figures matching certain criteria.

  USAGE

    DBListFigures(query)

    query          optional database query (WHERE clause)

  EXAMPLE

    DBListFigures('name="Spectrogram"');

  SEE

    See also DBGetVariables, DBGetFigures.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function DBListFigures(query)
0002 
0003 %DBListFigures - List figures matching certain criteria.
0004 %
0005 %  USAGE
0006 %
0007 %    DBListFigures(query)
0008 %
0009 %    query          optional database query (WHERE clause)
0010 %
0011 %  EXAMPLE
0012 %
0013 %    DBListFigures('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(DBGetFigures(query,'output','keys'));

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