7017
|
1 ## Copyright (C) 1997, 2000, 2003, 2005, 2007 |
|
2 ## Auburn University. All rights reserved. |
3437
|
3 ## |
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
7016
|
7 ## under the terms of the GNU General Public License as published by |
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3437
|
10 ## |
7016
|
11 ## Octave is distributed in the hope that it will be useful, but |
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
14 ## General Public License for more details. |
3437
|
15 ## |
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
3437
|
19 |
6945
|
20 ## Undocumented internal function. |
|
21 |
3437
|
22 ## -*- texinfo -*- |
3438
|
23 ## @deftypefn {Function File} {[@var{y}, @var{my}, @var{ny}] =} __abcddims__ (@var{x}) |
3437
|
24 ## |
|
25 ## Used internally in @code{abcddim}. If @var{x} is a zero-size matrix, |
|
26 ## both dimensions are set to 0 in @var{y}. |
|
27 ## @var{my} and @var{ny} are the row and column dimensions of the result. |
|
28 ## @end deftypefn |
|
29 |
|
30 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
31 ## Created: February 1997 |
|
32 |
3438
|
33 function [y, my, ny] = __abcddims__ (x) |
3437
|
34 |
|
35 y = x; |
4462
|
36 if (isempty (y)) |
3437
|
37 y = []; |
|
38 endif |
4462
|
39 [my, ny] = size (y); |
3437
|
40 |
|
41 endfunction |