File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 39
39
% DQ_TaskspaceQuadraticProgrammingController.
40
40
41
41
42
- % (C) Copyright 2011-2019 DQ Robotics Developers
42
+ % (C) Copyright 2011-2024 DQ Robotics Developers
43
43
%
44
44
% This file is part of DQ Robotics.
45
45
%
60
60
% DQ Robotics website: dqrobotics.github.io
61
61
%
62
62
% Contributors to this file:
63
- % Bruno Vihena Adorno - [email protected]
63
+ % 1. Bruno Vihena Adorno - [email protected]
64
+ % - Responsible for the original implementation
65
+ % 2. Frederico Fernandes Afonso Silva - [email protected]
66
+ % - Modified the 'reset_stability_counter()' method to ensure
67
+ % compatibility with its C++ version:
68
+ % - The flag 'system_reached_stable_region_' is now reset to
69
+ % 'false'.
70
+
64
71
classdef DQ_KinematicController < handle
65
72
properties (Access = protected )
66
73
% Controlled primitive attached to the end-effector. It is
134
141
end
135
142
136
143
function reset_stability_counter(obj )
137
- % Reset the stability counter to zero
144
+ % Reset the stability counter to zero and the flag indicating that
145
+ % the system has reached a stable region to false.
138
146
obj.stability_counter = 0 ;
147
+ obj.system_reached_stable_region_ = false ;
139
148
end
140
149
141
150
function set_stability_counter_max(obj , max )
You can’t perform that action at this time.
0 commit comments