필터 지우기
필터 지우기

Plot X, Y, Z axes with respect to time

조회 수: 43 (최근 30일)
Navin Johnson
Navin Johnson 2022년 3월 20일
댓글: Voss 2022년 3월 21일
So I have a file which contains the accelerometer values of a phone. The CSV file contains time, x, y and z columns. I am trying to find a way to plot the 3 axes (x, y and z) vs. time into one graph rather than using 'stackedplot'. How would one go about this?

채택된 답변

Voss
Voss 2022년 3월 20일
% making up some data:
t = 0:0.01:10;
x = cos(t);
y = sin(t);
z = t;
% plot x,y,z vs t in one plot:
figure();
plot(t,x,t,y,t,z);
legend('x','y','z');
xlabel('t');
grid on
% or make a 3d line whose points are (x,y,z):
figure();
plot3(x,y,z);
xlabel('x');
ylabel('y');
zlabel('z');
box on
grid on
  댓글 수: 8
Navin Johnson
Navin Johnson 2022년 3월 21일
Hi! Thank you so much for your time and answers! It works!
Voss
Voss 2022년 3월 21일
Excellent! You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

VBBV
VBBV 2022년 3월 20일
편집: VBBV 2022년 3월 20일
x_back_accel = cell2mat(backside_accel(:,1));
y_back_accel = cell2mat(backside_accel(:,2));
z_back_accel = cell2mat(backside_accel(:,3));
plot(t,x_back_accel,t,y_back_accel,t,z_back_accel);
Convert them to double array and plot it.
  댓글 수: 5
VBBV
VBBV 2022년 3월 21일
편집: VBBV 2022년 3월 21일
You can use readmatrix function instead of readtable when importing data and to plot them using your initial code without having to use cell2mat
backside_accel = readmatrix('Lab5-Phone-BackSide/accelerometer.csv');
t = 0:0.1:4;
x_back_accel = backside_accel(:,1);
y_back_accel = backside_accel(:,2);
z_back_accel = backside_accel(:,3);
figure()
plot(t,x_back_accel,t,y_back_accel,t,z_back_accel);
Navin Johnson
Navin Johnson 2022년 3월 21일
Oooh I'll try that

댓글을 달려면 로그인하십시오.

카테고리

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