-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInput.m
More file actions
37 lines (26 loc) · 745 Bytes
/
Input.m
File metadata and controls
37 lines (26 loc) · 745 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
30
31
32
33
34
35
36
37
classdef Input < Node
properties
fixedScale(1, 2) double
end
methods
function obj = Input(scale, varargin)
obj = obj@Node(Node.empty(), varargin{:});
obj.fixedScale = scale;
end
end
methods (Access = protected)
function value = evalElement(obj)
value = obj.value;
end
function computeScaleElement(obj)
obj.scale = obj.fixedScale;
end
function inputs = findInputsImpl(obj)
inputs = obj;
obj.flag = true;
end
function height = getCompiledHeight(~)
height = 1;
end
end
end