-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathknown_issues.txt
10 lines (9 loc) · 915 Bytes
/
known_issues.txt
1
2
3
4
5
6
7
8
9
20210719, R2020b, Mac, Big Sur, s1_musculoskeletal_geometry.m:
When calling session = setup(), VICON and AMTI are not properly appended to the end of session.dataImport.marker.options.directory (setup.m, line 82) or session.dataImport.forcePlate.options.directory (setup.m, line 95).
No problems for appending MC10 or APDM.
Evaluates fine outside of the function.
Evaluates fine within the setup.m function until it exits.
A workaround is to manually append these after setup() is called in s1_musculoskeletal_geometry.m (line 15)
For example, add:
if session.dataImport.marker.options.directory(end) ~= 'N'; session.dataImport.marker.options.directory = [session.dataImport.marker.options.directory, filesep, 'VICON']; end
if session.dataImport.forcePlate.options.directory(end) ~= 'I'; session.dataImport.forcePlate.options.directory = [session.dataImport.forcePlate.options.directory, filesep, 'AMTI']; end