-
Notifications
You must be signed in to change notification settings - Fork 13
/
FrenetTrajectory.m
38 lines (32 loc) · 926 Bytes
/
FrenetTrajectory.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 FrenetTrajectory
%CFRENETPATH Summary of this class goes here
% Detailed explanation goes here
properties
% time stamps
t
% Longitudinal coordinate
s % Longitudinal position
ds % Longitudinal velocity
dds % Longitudinal acceleration
ddds % Longitudinal jerk
% Lateral coordinate
d % Lateral position
dd % Lateral velocity
ddd % Lateral acceleration
dddd % Lateral jerk
% Costs
Jd % Lateral cost
Js % Longitudinal cost
J % Total cost
% World coordinates
x % x position
y % y position
theta % Orientation
kappa % Curvature
dL % Running length / arc length
v % Tangential velocity
a % Tangential acceleration
end
methods
end
end