Initial commit
[pftoolbox.git] / expressions / @xsymbolic / isempty.m
blob9fb3dd4cfbb97ec982def1573bbf956e7c8043e0
1 function bool=isempty(obj)\r
2 % Returns true if the object is considered empty, false otherwise.\r
3 %\r
4 % Syntax: (* = optional)\r
5 %\r
6 % bool = isempty(obj);\r
7 %\r
8 % In arguments:\r
9 %\r
10 % 1. model\r
11 %       The data object\r
12 %\r
13 % Out arguments:\r
14 %\r
15 % 1. v\r
16 %       The resulting logic datatype (true/false)\r
18 % Toolbox for nonlinear filtering.\r
19 % Copyright (C) 2005  Jakob Rosén <jakob.rosen@gmail.com>\r
20 %\r
21 % This program is free software; you can redistribute it and/or\r
22 % modify it under the terms of the GNU General Public License\r
23 % as published by the Free Software Foundation; either version 2\r
24 % of the License, or (at your option) any later version.\r
25 %\r
26 % This program is distributed in the hope that it will be useful,\r
27 % but WITHOUT ANY WARRANTY; without even the implied warranty of\r
28 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
29 % GNU General Public License for more details.\r
30 %\r
31 % You should have received a copy of the GNU General Public License\r
32 % along with this program; if not, write to the Free Software\r
33 % Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.\r
35 bool=isempty(obj.expression);\r