calcKinematicsBSplineCoefficientError.m
% This function is part of the NMSM Pipeline, see file for full license.
%
%
%
% (2D Array of double) -> (Array of double)
% Calculate deviations in kinematics B-Spline coefficients.
function error = calcKinematicsBSplineCoefficientError(bSplineCoefficients)
error = reshape(bSplineCoefficients - 1, 1, []);
end