File: nfsftTestcaseDelegate.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 (19 lines) | stat: -rw-r--r-- 325 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
classdef nfsftTestcaseDelegate
  %NFSFTTESTCASEDELEGATE Summary of this class goes here
  properties(Hidden=true,SetAccess='protected',GetAccess='public')
    N = [];
    M = [];
    x = [];
    f_hat = [];
    f = [];
  end
  
  methods
    function h = setup(h)
    end
    
    function h = destroy(h)
    end
  end
  
end