3397
|
1 ## Copyright (C) 1997 Auburn University. All rights reserved. |
3381
|
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 |
|
17 ## Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. |
3213
|
18 |
3346
|
19 ## -*- texinfo -*- |
|
20 ## @deftypefn {Function File } {[@var{y}, @var{my}, @var{ny}] =} abcddims (@var{x}) |
|
21 ## |
|
22 ## Used internally in @code{abcddim}. If @var{x} is a zero-size matrix, |
|
23 ## both dimensions are set to 0 in @var{y}. |
|
24 ## @var{my} and @var{ny} are the row and column dimensions of the result. |
|
25 ## @end deftypefn |
3213
|
26 |
3398
|
27 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
28 ## Created: February 1997 |
|
29 |
3385
|
30 function [y, my, ny] = abcddims (x) |
3213
|
31 |
|
32 y = x; |
|
33 if(isempty(y)) |
|
34 y = []; |
|
35 endif |
|
36 [my,ny] = size(y); |
3398
|
37 |
3213
|
38 endfunction |