How do I plot a sphere along an elliptical path
Mostra commenti meno recenti
Hi all,
I am trying to plot a spherical object along an elliptical path, I found this code that plots the path, but I need to get the sphere to move along this path
ellipse = fncmb(circle,[2 0;0 1]);
s45 = 1/sqrt(2);
rtellipse = fncmb(fncmb(ellipse, [s45 -s45;s45 s45]), [1;1] );
hold on, fnplt(rtellipse), hold off
Regards,
Jobe
4 Commenti
Walter Roberson
il 4 Dic 2013
Is this intended to be about the same matter as http://www.mathworks.co.uk/matlabcentral/answers/108526-how-to-animate-the-motion-of-a-spherical-object-in-a-circular-path ?
Mahmoud
il 4 Dic 2013
Modificato: Walter Roberson
il 4 Dic 2013
Walter Roberson
il 4 Dic 2013
The code you show doesn't really rotate the sphere: it rotates the viewpoint leaving the sphere fixed in place. My guess is that you will want to keep your viewpoint in place and have the object move within the fixed view, right?
Mahmoud
il 4 Dic 2013
Risposta accettata
Più risposte (1)
Mahmoud
il 4 Dic 2013
Modificato: Walter Roberson
il 4 Dic 2013
1 Commento
Walter Roberson
il 4 Dic 2013
You probably don't want the scaling portion going on, just
Rz = makehgtform('zrotate',r);
set(t, 'Matrix', Rz);
drawnow()
I am not sure at the moment why the rotation might not be happening. Are you seeing the scaling going on? With the code you have, is the sphere growing over time?
Categorie
Scopri di più su Surface and Mesh Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!