annotate scripts/general/common_size.m @ 11523:fd0a3ac60b0e

update copyright notices
author John W. Eaton <jwe@octave.org>
date Fri, 14 Jan 2011 05:47:45 -0500
parents 01ddaedd6ad5
children 9e7ebbaf69ff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11523
fd0a3ac60b0e update copyright notices
John W. Eaton <jwe@octave.org>
parents: 11191
diff changeset
1 ## Copyright (C) 1995-2011 Kurt Hornik
9477
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
2 ## Copyright (C) 2009 VZLU Prague
10034
439c7a9d0fca optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 9477
diff changeset
3 ## Copyright (C) 2009 Jaroslav Hajek
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3369
diff changeset
4 ##
3922
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3426
diff changeset
5 ## This file is part of Octave.
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3426
diff changeset
6 ##
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3426
diff changeset
7 ## Octave is free software; you can redistribute it and/or modify it
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3426
diff changeset
8 ## under the terms of the GNU General Public License as published by
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6547
diff changeset
9 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6547
diff changeset
10 ## your option) any later version.
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3369
diff changeset
11 ##
3922
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3426
diff changeset
12 ## Octave is distributed in the hope that it will be useful, but
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
13 ## WITHOUT ANY WARRANTY; without even the implied warranty of
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
14 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3369
diff changeset
15 ## General Public License for more details.
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3369
diff changeset
16 ##
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
17 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6547
diff changeset
18 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6547
diff changeset
19 ## <http://www.gnu.org/licenses/>.
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
20
3369
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
21 ## -*- texinfo -*-
6547
4fb053f24fd6 [project @ 2007-04-19 21:47:40 by jwe]
jwe
parents: 5428
diff changeset
22 ## @deftypefn {Function File} {[@var{err}, @var{y1}, @dots{}] =} common_size (@var{x1}, @dots{})
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
23 ## Determine if all input arguments are either scalar or of common
3369
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
24 ## size. If so, @var{err} is zero, and @var{yi} is a matrix of the
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
25 ## common size with all entries equal to @var{xi} if this is a scalar or
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
26 ## @var{xi} otherwise. If the inputs cannot be brought to a common size,
10821
693e22af08ae Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents: 10791
diff changeset
27 ## @var{err} is 1, and @var{yi} is @var{xi}. For example:
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3369
diff changeset
28 ##
3369
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
29 ## @example
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
30 ## @group
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
31 ## [errorcode, a, b] = common_size ([1 2; 3 4], 5)
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
32 ## @result{} errorcode = 0
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
33 ## @result{} a = [ 1, 2; 3, 4 ]
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
34 ## @result{} b = [ 5, 5; 5, 5 ]
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
35 ## @end group
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
36 ## @end example
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3369
diff changeset
37 ##
3369
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
38 ## @noindent
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
39 ## This is useful for implementing functions where arguments can either
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
40 ## be scalars or of common size.
3369
f37ca3017116 [project @ 1999-11-21 16:26:02 by jwe]
jwe
parents: 2539
diff changeset
41 ## @end deftypefn
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
42
5428
2a16423e4aa0 [project @ 2005-08-23 18:38:27 by jwe]
jwe
parents: 5307
diff changeset
43 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
44 ## Created: 15 October 1994
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
45 ## Adapted-By: jwe
9477
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
46 ## Optimized-By: Jaroslav Hajek
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
47
3979
e0b7a493e5a8 [project @ 2002-07-10 17:45:34 by jwe]
jwe
parents: 3922
diff changeset
48 function [errorcode, varargout] = common_size (varargin)
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3369
diff changeset
49
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
50 if (nargin < 2)
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
51 error ("common_size: only makes sense if nargin >= 2");
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
52 endif
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
53
9477
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
54 ## Find scalar args.
11188
4cb1522e4d0f Use function handle as input to cellfun,
Rik <octave@nomad.inbox5.com>
parents: 10965
diff changeset
55 nscal = cellfun (@numel, varargin) != 1;
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3369
diff changeset
56
9477
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
57 i = find (nscal, 1);
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
58
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
59 if (isempty (i))
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
60 errorcode = 0;
3979
e0b7a493e5a8 [project @ 2002-07-10 17:45:34 by jwe]
jwe
parents: 3922
diff changeset
61 varargout = varargin;
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
62 else
9477
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
63 match = cellfun (@size_equal, varargin, varargin(i));
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
64 if (any (nscal &! match))
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
65 errorcode = 1;
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
66 varargout = varargin;
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
67 else
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
68 errorcode = 0;
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
69 if (nargout > 1)
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
70 scal = !nscal;
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
71 varargout = varargin;
10034
439c7a9d0fca optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 9477
diff changeset
72 if (any (nscal))
439c7a9d0fca optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 9477
diff changeset
73 dims = size (varargin{find (nscal, 1)});
11191
01ddaedd6ad5 Reverse changeset b1f4bdc276b6. Use all lower case for "uniformoutput" option.
Rik <octave@nomad.inbox5.com>
parents: 11190
diff changeset
74 subs = arrayfun (@ones, 1, dims, "uniformoutput", false);
10965
28ef5a31763d small rewrite in common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 10821
diff changeset
75 varargout(scal) = cellindexmat (varargin(scal), subs{:});
10034
439c7a9d0fca optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 9477
diff changeset
76 endif
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
77 endif
9477
4d3d90253e8a optimize common_size
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
78 endif
2539
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
79 endif
1dca28c213f0 [project @ 1996-11-19 23:54:48 by jwe]
jwe
parents:
diff changeset
80 endfunction