-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubtask.m
39 lines (36 loc) · 1 KB
/
subtask.m
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
classdef subtask
properties
startPos
endPos
taskTime
type %move/assemble
Dk %kuka potential incapability coeff
Da %abb
Pk %kuka potential insufficeincy coeff for precios
Pa %abb
description
end
methods
function obj = subtask(startPos,endPos,taskTime,type,Dk,Da,Pk,Pa,description)
obj.startPos = startPos;
obj.endPos = endPos;
obj.taskTime = taskTime;
obj.type = type;
obj.Dk = Dk;
obj.Da = Da;
obj.Pk = Pk;
obj.Pa = Pa;
if nargin == 9
obj.description = description;
else
obj.description = "";
end
end
%
% function outputArg = method1(obj,inputArg)
% %METHOD1 Summary of this method goes here
% % Detailed explanation goes here
% outputArg = obj.Property1 + inputArg;
% end
end
end