DBListVariables - List variables matching certain criteria. USAGE DBListVariables(query) query optional database query (WHERE clause) EXAMPLE DBListVariables('name="Spectrogram"'); SEE See also DBGetVariables, DBGetFigures.
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'));