function [output,varargout] = plotSCase(SCaseID) % Call a ShoulderCase.plot function % % Inputs: id char of shoulder case (e.g. 'P315') % % Output: Corresponding ShoulderCasePlotter object % % Example: SCasePlotter = plotSCase('P315'); % % Author: Alexandre Terrier, EPFL-LBO % Matthieu Boubat, EPFL-LBO % Creation date: 2018-07-01 % Revision date: 2020-08-10 addpath(genpath('ShoulderCase')); SCase = loadSCase(SCaseID); SCasePlotter = plot(SCase); output = SCasePlotter; end