10 lines
279 B
Mathematica
10 lines
279 B
Mathematica
|
|
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
|