BIRDy/Benchmark/Robot_Identification_Algori.../Kalman/Utils/acquireMeasurement.m

10 lines
279 B
Mathematica
Raw Permalink Normal View History

2021-04-29 09:42:38 +00:00
function y = acquireMeasurement(Tau, Qpp, Qp, Q, index)
% Authors: Quentin Leboutet, Julien Roux, Alexandre Janot and Gordon Cheng
%
% This function returns the measured joint value at a given epoch.
y = Q(:, index); % Actual joint position measurement from the encoders
end