KULeuvenNeuromechanics / MuscleRedundancySolver

An algorithm to estimate muscle tendon properties and/or compute muscle coordination by tracking experimental data with a musculoskeletal model assuming optimal control to solve for the muscle redundancy.
32 stars 14 forks source link

Misc.AnalysisID missing in the example files #34

Open VDB-Bram opened 2 months ago

VDB-Bram commented 2 months ago

When running the examples, there is an error that Misc.AnalysisID is missing. This should be added to the example files.

israelluis commented 2 months ago

I think you just have to assign a 'char' value. When defining the setup, like in

%% Example EMG driven simulation for the ankle joint .... %% Input information % Add here the paths of IK, ID , US and EMG data trials you want to work with ... Misc.AnalysisID = 'cal';

...

you add " Misc.AnalysisID = 'cal'; ", it could be 'cal' or any other 'char' value and it should work :)

VDB-Bram commented 2 months ago

I know :) I created this issue to not forget that this should be added to the provided examples. Users should be able to run these examples without any errors I believe, this is currently not the case.

Adding e.g. Misc.AnalysisID = 'example'; to all examples should fix the issue.