thesis/sistema_discr.m

5 lines
89 B
Matlab

function x = sistema_discr(t, x)
global u_discr
x = unicycle(t, x, u_discr);
end