-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpreprocess.m
More file actions
30 lines (26 loc) · 916 Bytes
/
preprocess.m
File metadata and controls
30 lines (26 loc) · 916 Bytes
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
classdef preprocess < process
%PREPROCESS preprocess part of the prcessing pipeline. Takes a
% uff.channel_data structure and return another uff.channel_data
%
% See also PROCESS, CHANNEL_DATA, BEAMFORMED_DATA
% authors: Alfonso Rodriguez-Molares (alfonso.r.molares@ntnu.no)
% Ole Marius Hoel Rindal <olemarius@olemarius.net>
%
% $Date: 2017/09/10$
%% public properties
properties (Access = public)
input % CHANNEL_DATA class
output % CHANNEL_DATA class
end
%% set methods
methods
function set.input(h, val)
validateattributes(val, {'uff.channel_data'}, {'scalar'})
h.input = val;
end
function set.output(h, val)
validateattributes(val, {'uff.channel_data'}, {'scalar'})
h.output = val;
end
end
end