Draw from cartesian xy-data a spiral

조회 수: 6 (최근 30일)
Mark S
Mark S 2022년 4월 22일
답변: Voss 2022년 4월 22일
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:
M = readmatrix('spiral')
subplot(2,1,1)
plot(M(:,1)/1000,M(:,2));
hold on
subplot(2,1,2)
plot(M(:,1)/1000,M(:,3));

채택된 답변

Voss
Voss 2022년 4월 22일
M = readmatrix('spiral');
plot(M(:,2),M(:,3)); % x, y

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by