Info

This question is closed. Reopen it to edit or answer.

Help tidying my code!

1 view (last 30 days)
Alex
Alex on 23 Dec 2014
Closed: MATLAB Answer Bot on 20 Aug 2021
if true
if navMemory.lastPos(1)>950
% targVel=-targVel;
% if navMemory.kk_temp >10
% navMemory.navState = 3;
% navMemory.kk_temp = 0;
% end
% elseif navMemory.lastPos(1)<-950
% targVel=-targVel;
% if navMemory.kk_temp >10
% navMemory.navState = 3;
% navMemory.kk_temp = 0;
% end
% elseif navMemory.lastPos(2)>950
% targVel=-targVel;
% if navMemory.kk_temp >10
% navMemory.navState = 3;
% navMemory.kk_temp = 0;
% end
% elseif navMemory.lastPos(2)<-950
% targVel=-targVel;
% if navMemory.kk_temp >10
% navMemory.navState = 3;
% navMemory.kk_temp = 0;
% end
% end end
Is there a way of sensibly shortening this? navMemory.lasPos is a variable with 2 values. I need these values to remain between 950 and -950, otherwise case 3 is called. This seems like a needlessly complicated way of doing it. (kk_temp is just a timer)
Many thanks as usual!

Answers (1)

Zoltán Csáti
Zoltán Csáti on 23 Dec 2014
Since rows navMemory.navState = 3; and navMemory.kk_temp = 0; occur under the same condition (navMemory.kk_temp >10), you can put that condition outside. So
if navMemory.kk_temp >10
navMemory.navState = 3;
navMemory.kk_temp = 0;
end
if navMemory.lastPos(1)>950
targVel=-targVel;
elseif navMemory.lastPos(1)<-950
targVel=-targVel;
elseif navMemory.lastPos(2)>950
targVel=-targVel;
elseif navMemory.lastPos(2)<-950
targVel=-targVel;
end
  3 Comments
Alex
Alex on 23 Dec 2014
Thank you - very good point! Is there any way of writing the following:
if -950<navMemory.lastPos>950
targVel=-targVel;
end
Thanks
Zoltán Csáti
Zoltán Csáti on 23 Dec 2014
Yes, but you wrote you want navMemory.lastPos remain between -950 and 950. So
if navMemory.lastPos > -950 & navMemory.lastPos <950
...
end

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!