Collection of MATLAB scripts, apps, and Simulink models for use in the LIBRA project.
Analysis scripts for handling output files from other applications (e.g., LIBRA-app, CloudCompute).
Simulink models and scripts defining the Elastic Telescopic Arm, or ETA, used as the arm/manipulator on LIBRA-II.
Helper scripts related to the fluid-based counterweight system used by both LIBRA-I and LIBRA-II.
Apps and scripts defining forward kinematics calculations and visualizations of LIBRA-I; loosely based on Yuto Goto's forward kinematics script.
Helper scripts related to the revolute joint on LIBRA-II (sometimes called REVJNT).
You can use the included M-script MBeautifier to format your code. To add format-code as a MATLAB command to edit your active file, edit/create the following files in your MATLAB user path (if you're not sure where that is, type userpath into your Command window).
Make sure to replace <PATH-TO-THIS-REPO> with the full path to this repository.
% MBeautifier - MATLAB Code Formatting
addpath("<PATH-TO-THIS-REPO>\thirdparty\MBeautifier")function format_code()
MBeautify.formatCurrentEditorPage();
end