Amplitude spectrum from Excel

조회 수: 2 (최근 30일)
Anton Ramarchuk
Anton Ramarchuk 2020년 5월 29일
답변: Dinesh Yadav 2020년 6월 2일
Good day
I have an excel file with the acceleration of x y z axis of a runing shaft and i want to do the amplitude spectrum of these acceleration so how can i do it?
Here is the link to excel file
https://wutwaw-my.sharepoint.com/:x:/g/personal/01136536_pw_edu_pl/EQ4fGklBm-RIkMxWzZ_eG_ABBF4gi7uPVxFzH33Tr91tug?e=GmSUUI

답변 (1개)

Dinesh Yadav
Dinesh Yadav 2020년 6월 2일
Hi Anton
Kindly refer to the following link on how to read data from excel file into MATLAB.
Below is the code to replicate the amplitude spectrum as shown in excel file.
T = readtable('file.xlsx','Sheet',2);
t = T.AccelerationX_Time_;
x = T.AccelerationX;
y = T.AccelerationY;
z = T.AccelerationZ;
plot(t,x,t,y,t,z);
Hope it Helps.

카테고리

Help CenterFile Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by