Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
Multi-agent interaction planning
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Larkin Heintzman
Multi-agent interaction planning
Commits
e85afaac
Commit
e85afaac
authored
Dec 10, 2019
by
Larkin Heintzman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
6de25905
Pipeline
#29
canceled with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
load_params.m
Matlab Code/load_params.m
+45
-0
No files found.
Matlab Code/load_params.m
0 → 100644
View file @
e85afaac
% big-ass parameter file
% sample selection information
Tk
=
3
;
% time slices
K
=
2
;
% constraint for interaction
Pj
=
50
;
% samples per time slice
rho
=
0.75
;
sig
=
0.5
;
% environmental heatmap info
mu
=
[
1
1
;
3
1
;
8
3
];
gmmMeans
=
size
(
mu
,
1
);
sigma
=
3
*
ones
(
1
,
2
,
gmmMeans
);
sigma
(:,:,
1
)
=
[
5
5
];
sigma
(:,:,
2
)
=
[
5
5
];
% multi-agent path planning information
agent_number
=
3
;
N
=
agent_number
;
starting_locations
=
[
1
,
2
;
1
2.5
;
1
3
];
% goal_locations = [5,5;9,9];
goal_final
=
[
9
,
2
;
9
2.5
;
9
3
];
goal_locations
=
goal_final
;
token_ownership
=
true
;
environment_size
=
[
0
10
0
5
];
threshold
=
0.40
;
safe_radius
=
1
;
step_size
=
0.1
;
collision_radius
=
0.5
;
move_speed
=
1
;
planning_iterations
=
300
;
max_sample_itr
=
50
*
Pj
;
% get average 50 misses per sample point (?)
distance_increment
=
3
;
% [x_pts, y_pts] = generateObstacles(environment_size, threshold, step_size, starting_locations, goal_locations, safe_radius);
% obstacle_points = [x_pts, y_pts];
load
(
"
obstacle_saved
.
mat
"
);
% build environmental heatmap
[
gmPDF
,
Z
,
gmObj
,
x_area
,
y_area
]
=
buildGMM
(
environment_size
,
mu
,
sigma
);
% plotting parameters
lw
=
1.5
;
% line width
fs
=
16
;
% font size
ms
=
10
;
% marker size
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment