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