-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b77db60
commit 4490055
Showing
197 changed files
with
9,547 additions
and
2,708 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
%%%%%% Configuration | ||
%%%%%% config_all_default_param | ||
%%%%%% | ||
%%%%%% Define all default parameters | ||
%%%%%% | ||
%%%%%% Created 2021-03-02 | ||
%%%%%% Keigo Haji | ||
%%%%%% Last update: 2021-04-24 | ||
%%%%%% Kentaro Uno | ||
% | ||
% | ||
% Define and load configurations for all default parameters. | ||
% | ||
% Function variables: | ||
% | ||
% OUTPUT | ||
% robot_param | ||
% environment_param | ||
% gait_planning_param | ||
% control_param | ||
% equilibrium_eval_param | ||
% ani_settings | ||
% save_settings | ||
% plot_settings | ||
% gripper_param | ||
% map_param | ||
% matching_settings | ||
% sensing_camera_param | ||
% INPUT | ||
% - | ||
% | ||
% | ||
function [robot_param, environment_param, gait_planning_param, control_param, equilibrium_eval_param, ani_settings, save_settings, ... | ||
plot_settings, gripper_param, map_param, matching_settings, sensing_camera_param] = config_all_default_param() | ||
|
||
|
||
% Load all default parameters | ||
robot_param = config_robot_param(); | ||
environment_param = config_environment_param(); | ||
gait_planning_param = config_gait_planning_param(); | ||
control_param = config_control_param(); | ||
equilibrium_eval_param = config_equilibrium_param(); | ||
ani_settings = config_animation_settings(); | ||
save_settings = config_save_settings(environment_param); | ||
plot_settings = config_plot_settings(); | ||
[gripper_param, map_param, matching_settings] = config_target_detection_param(); | ||
sensing_camera_param = config_sensing_camera_param(); | ||
|
||
|
||
end | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.