Circular motion of a big dog
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
High everybody.
I need to make a dog(a point) run around in a circle with a radius of 1 meter and angular velocity of 1 radian/sec. The time interval is 0-14*pi. The starting position of the dog is (1;0).
Hope somebody can help.
1 comentario
Patrik Ek
el 5 de Mzo. de 2014
You will need to clarify I guess. I am not really sure what you want to do here. Do you want the dots to be located at the right spot or do you want something that changes in time? If you want somehing that changes in time I guess that a movie could go well here, but if you want to do it with a plot it may be possible to get it to work anyway.
You will need to create a loop that is as short as possible, like the one you already have, to get a low runtime. Then run the function enough times to get a stable average runtime. After that, instead of using pause, which completely halts the matlab execution of the program, use a function that have a stable runtime and set this runtime to the value needed to give the dog the speed 1rad/sec. Functions like this may be found on the internet I guess.
Respuestas (3)
Patrik Ek
el 5 de Mzo. de 2014
Editada: Patrik Ek
el 5 de Mzo. de 2014
Does it work with
r*[cos(0:14*pi)+1i*sin(0:14*pi)];
or do you need something else?
Other coordinates or structure should not be a problem. This will of course miss the end point so that one will have to be added in addition.
0 comentarios
Image Analyst
el 5 de Mzo. de 2014
See the 4th example for circle in the FAQ http://matlab.wikia.com/wiki/FAQ#How_do_I_create_a_circle.3F It's parameterized so basically theta is your time coordinate.
0 comentarios
Sebastian
el 5 de Mzo. de 2014
Editada: Sebastian
el 5 de Mzo. de 2014
2 comentarios
Patrik Ek
el 5 de Mzo. de 2014
This should not be an answer, please place it as an edit to the question. But no great harm done I guess:). Furthermore see my comment on top.
Image Analyst
el 5 de Mzo. de 2014
Why does it not do anything? Does it ever get called? If you set a breakpoint on the first line, does it stop there? Do you know how to debug?
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!