thesis/sistema_discr.m

5 lines
89 B
Matlab
Raw Normal View History

2024-07-14 15:16:05 +02:00
function x = sistema_discr(t, x)
global u_discr
x = unicycle(t, x, u_discr);
end