3d Helix trajectory generation in robotics toolbox
Mostra commenti meno recenti
I would like to modify the following proram from here to generate a helix trajectory instead of a circular one. Here is the part that should be modified:
t = (0:0.2:10)'; % Time
count = length(t);
center = [0.3 0.1 0];
radius = 0.15;
theta = t*(2*pi/t(end));
points =center + radius*[cos(theta) sin(theta) zeros(size(theta))];
It's supposed to be like that.

I tried substituting zeros(size(theta)) by a vector of the same size using linspace but it still gives me a circle.
Thanks in advance.
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Motion Planning in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!