summaryrefslogtreecommitdiff
path: root/modules/xcos/demos/setw.sci
blob: 81bc785109954eb4ed2ddd29ef9f85a752cda2f6 (plain)
1
2
3
4
5
6
7
8
9
function y = setw(x)
    mu = size(x, 1);
    y(1:mu,1:mu) = 0;
    for j = 1:mu
        for i = 1:mu-j+1
            y(i,j) = x(i+j-1);
        end
    end
endfunction