File: gabframediag_test_mat.m

package info (click to toggle)
python-ltfatpy 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,412 kB
  • sloc: ansic: 8,546; python: 6,470; makefile: 15
file content (46 lines) | stat: -rw-r--r-- 1,015 bytes parent folder | download | duplicates (2)
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
function gabframediag_test_mat( filepath )
% Generate some windows and the corresponding diagonal of gabor frame
% operator

if nargin < 1
    filepath = BaseFolder.get_BasePath();
end;

Lr  = [24, 35, 35, 24,144,108,144,135,77,77];
ar  = [ 6,  5,  5,  4,  9,  9, 12,  9, 7, 7];
Mr  = [ 8,  7,  7,  6, 16, 12, 24,  9,11,11];
glr = [16, 14, 21, 12, 48, 12, 24, 18,22,11];

filename=[filepath 'gabframediag_signal_ex.mat'];
disp(filename)
ind = 1;

for ii=1:length(Lr)
    L=Lr(ii);
    M=Mr(ii);
    a=ar(ii);
    gl=glr(ii);
    fprintf('L=%d, M=%d, a=%d, gl=%d\n',L,M,a,gl);
    for jj=1:2
        if jj == 1
            %Complex case
            g=tester_crand(gl,1);
        else
            %Real case
            g=randn(L,1);
        end;
        diag = gabframediag(g, a, M, L);
        Data{ind}.L = L;
        Data{ind}.M = M;
        Data{ind}.a = a;
        Data{ind}.gl = gl;    
        Data{ind}.g = g;
        Data{ind}.diag = diag;
        ind = ind + 1;
    end;
end;

save(filename,'Data');

end