You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It might not be ideal but we could add a default behavior for estimating the offset when no offset is known or provided.
The default behavior to include would be :
[reCalibData.(ft),~]=recalibrateData(datasetToUse.rawData.(ft),calibMatrices.(ft),...
'offset',zeros(6,1),recabInput{:});
% take out offset in the filtered data for comparison
offsetInWrenchSpace.(ft)=mean(reCalibData.(ft)-datasetToUse.estimatedFtData.(ft));
reCalibDataNoOffset.(ft)=reCalibData.(ft) -repmat(offsetInWrenchSpace.(ft),size(reCalibData.(ft),1),1);
offsetInWrenchSpace.(ft)=offsetInWrenchSpace.(ft)';
Dealing with the option from the varargin point of view needs to be considered
The text was updated successfully, but these errors were encountered:
It might not be ideal but we could add a default behavior for estimating the offset when no offset is known or provided.
The default behavior to include would be :
Dealing with the option from the varargin point of view needs to be considered
The text was updated successfully, but these errors were encountered: