function output = loadSCase(SCaseID) % Load a ShoulderCase from the database % % Inputs: id char of shoulder case (e.g. 'P315') % % Output: Corresponding ShoulderCase object % % Example: SCasePlotter = plotSCase('P315'); % addpath(genpath('ShoulderCase')); database = ShoulderCaseLoader; SCase = database.loadCase(SCaseID); output = SCase; end