File: nfftTestcaseDelegate.m

package info (click to toggle)
nfft 3.5.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,972 kB
  • sloc: ansic: 44,442; lisp: 1,697; makefile: 1,322; sh: 744; sed: 5
file content (50 lines) | stat: -rw-r--r-- 1,161 bytes parent folder | download
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
classdef nfftTestcaseDelegate
  %NFFTTESTCASEDELEGATE Summary of this class goes here
  %   Detailed explanation goes here
  %
  %   properties(Hidden=true,SetAccess='private',GetAccess='private');
  %     setup_function = [];
  %     destroy_function = [];
  %   end
  %
  %   methods
  %     function h = nfft(setup, destroy)
  %       if isa(setup, 'function_handle')
  %         h.setup_function = setup;
  %       end
  %       if isa(destroy, 'function_handle')
  %         h.destroy_function = destroy;
  %       end
  %     end
  %
  %     function setup(h,d, N, NN, M, x, f_hat, f)
  %       if isa(h.setup_function, 'function_handle')
  %         h.setup_function(d, N, NN, M, x, f_hat, f);
  %       end
  %     end
  %
  %     function destroy(h,x, f_hat, f)
  %       if isa(h.destroy_function, 'function_handle')
  %         h.destroy(x, f_hat, f);
  %       end
  %     end
  %   end
  properties(Hidden=true,SetAccess='protected',GetAccess='public')
    d = [];
    N = [];
    NN = [];
    M = [];
    x = [];
    f_hat = [];
    f = [];
  end
  
  methods
    function h = setup(h)
    end
    
    function h = destroy(h)
    end
  end
  
end