forked from lyphix/High_Level_Control
-
Notifications
You must be signed in to change notification settings - Fork 0
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
XI LUO
committed
Mar 15, 2023
0 parents
commit e9205a4
Showing
2 changed files
with
12 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
% Clean | ||
clc; | ||
close all; | ||
|
||
% System Parameters |
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,7 @@ | ||
function [outputArg1,outputArg2] = Robot_Dog(inputArg1,inputArg2) | ||
%ROBOT_DOG Summary of this function goes here | ||
% Detailed explanation goes here | ||
outputArg1 = inputArg1; | ||
outputArg2 = inputArg2; | ||
end | ||
|