juniorrojas/algovivo

Implement WASM function to clamp neural controller action

Closed this issue · 0 comments

Currently it's implemented in JS

if (da > maxAbsDa) da = maxAbsDa;
if (da < -maxAbsDa) da = -maxAbsDa;