Hello, i have cartesian data in x and y direction of a spiral path movement of a robot over time.
So I want now plot this spiral in matlab. But then I receive a wave.
How can I plot my data to get the spiral. The first column is the time, second x-data, third y-data. Unit of time is millisecond and movement is in millimetre.
Attached is the data, my matlab script:
plot(M(:,1)/1000,M(:,2));
plot(M(:,1)/1000,M(:,3));