MatrixBerryCore
+mxberry
+core
+cont
ValueBox.m
Go to the documentation of this file.
1
classdef ValueBox<handle
2
properties
3
val
4
end
5
%
6
methods
7
function
setValue(
self
,val)
8
self
.val=val;
9
end
10
function
val=getValue(
self
)
11
val=self.val;
12
end
13
end
14
end
Generated for MatrixBerryCore by
1.8.13