3430
|
1 ## Copyright (C) 1996 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 |
|
17 ## Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. |
|
18 |
|
19 ## -*- texinfo -*- |
3500
|
20 ## @deftypefn {Function File} {} sysreorder (@var{vlen}, @var{list}) |
3430
|
21 ## |
|
22 ## @strong{Inputs} |
|
23 ## @var{vlen}=vector length, @var{list}= a subset of @code{[1:vlen]}, |
|
24 ## |
|
25 ## @strong{Outputs} |
|
26 ## @var{pv}: a permutation vector to order elements of @code{[1:vlen]} in |
|
27 ## @code{list} to the end of a vector. |
|
28 ## |
|
29 ## Used internally by @code{sysconnect} to permute vector elements to their |
|
30 ## desired locations. |
|
31 ## @end deftypefn |
|
32 |
|
33 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
34 ## Created: August 1995 |
|
35 |
|
36 function pv = sysreorder (vlen, list) |
|
37 |
|
38 ## disp('sysreorder: entry') |
|
39 |
|
40 pv = 1:vlen; |
|
41 ## make it a row vector |
|
42 list = reshape(list,1,length(list)); |
|
43 A = pv'*ones(size(list)); |
|
44 B = ones(size(pv'))*list; |
|
45 X = (A != B); |
4030
|
46 if(!isvector(X)) |
3430
|
47 y = min(X'); |
|
48 else |
|
49 y = X'; |
|
50 endif |
|
51 z = find(y == 1); |
|
52 if(!isempty(z)) |
|
53 pv = [z, list]; |
|
54 else |
|
55 pv = list; |
|
56 endif |
|
57 |
|
58 endfunction |