ResearchOS / Biomech-Analysis-Platform-MATLAB

A GUI-based operating system framework to facilitate biomechanical data analysis. This platform attempts to manage the non-scientific part of coding without restricting the direction or method of scientific analysis.
MIT License
4 stars 0 forks source link

Modify getArg and setArg to not require a "name in code" and a GUI name. #120

Open mtillman14 opened 1 year ago

mtillman14 commented 1 year ago

Instead, provide the ability to order the variables in the GUI. This order will correspond to the order of the variables in the get/setArg functions. Example syntax: [data1,data2]=getArg(1);

I think that setArg syntax stays the same. setArg(subName,trialName,repNum,data1,data2);

mtillman14 commented 1 year ago

Amending syntax to look like: [data1, data2]=getArg(1,subName,trialName,repNum); setArg syntax is already accurate.