summaryrefslogtreecommitdiff
path: root/modules/elementary_functions/macros/permute.sci
blob: b23ec93e4f49933959951649740f596762b3e681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) INRIA - Farid BELAHCENE
// Copyright (C) 2013 - Samuel GOUGEON : processing rewritten, fixing http://bugzilla.scilab.org/5205
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution.  The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt

function y = permute(x, dims)

    // This function returns an array y which results of the x permutation
    // Input :
    // -x a (multi-dimensionnnal) array of cells, or doubles or strings, ...
    // -dims a vector which contains the permutation order
    // Output :
    // -y the result of the x permutation

    // Verify input arguments number
    if argn(2) <> 2 then
        error(msprintf(gettext("%s: Wrong number of input argument(s): %d expected.\n"), "permute", 2));
    end

    // Verify if the size of dims corresponds to dimension of x
    if ndims(dims) <> 2 then
        error(msprintf(gettext("%s: Wrong size for argument #%d: Vector expected.\n"), "permute", 2));

    elseif or(gsort(dims,"c","i") <> (1:prod(size(dims)))) then
        error(msprintf(gettext("%s: Wrong value for input argument #%d: Must be a valid permutation vector.\n"), "permute", 2));

    elseif prod(size(dims)) < ndims(x) then
        error(msprintf(gettext("%s: Wrong size for input argument #%d: At least the size of input argument #%d expected.\n"), "permute", 2, 1));
    end

    // Case x is empty
    if isempty(x) then
        y = x
        return
    end

    // ---------------- PROCESSING --------------------
    // Existing indices
    s = size(x)
    p = size(x, "*")

    // Treat extra dimensions for permutations as 1
    s = [s ones(1, length(dims) - length(s))];

    n = 1
    for i = 1:length(s)
        t = "x%d = ones(1,p/(prod(s(1:%d)))) .*. ((1:s(%d)) .*. ones(1,n)) ;"+..
        " n = prod(s(1:%d))\n"
        t = msprintf(t, i, i, i, i)
        execstr(t)
    end
    xlist = strcat(msprintf("x%d\n",(1:length(s))'),",")
    cstr = "sub2ind(s,"+ xlist +")"
    execstr("LI = "+cstr)

    // New indices
    s = s(dims)
    cstr = "sub2ind(s,"+ strcat(msprintf("x%d\n", dims(:)), ",")+")"
    execstr("LI2 = "+cstr)

    // Clearing intermediate memory used
    execstr("clear "+strsubst(xlist, ",", " "))

    // Permutation
    if typeof(x) == "ce"
        y = x
        y.dims = int32(s)
        y(LI2).entries = x(LI).entries
    else
        y(LI2) = x(LI)
        y = matrix(y, s)
    end

endfunction