This website requires JavaScript.
Explore
Help
Sign In
EmaMaker
/
thesis
Watch
1
Star
0
Fork
You've already forked thesis
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
ec8b2dcecb
thesis
/
sistema_discr.m
5 lines
89 B
Matlab
Raw
Normal View
History
Unescape
Escape
rename state x to q
2024-07-23 18:07:50 +02:00
function
x
=
sistema_discr
(
t, q
)
simulate system in discrete time
2024-07-14 15:16:05 +02:00
global
u_discr
rename state x to q
2024-07-23 18:07:50 +02:00
q
=
unicycle
(
t
,
q
,
u_discr
)
;
simulate system in discrete time
2024-07-14 15:16:05 +02:00
end