How to assign time on x-axis in emd?
조회 수: 2 (최근 30일)
이전 댓글 표시
I am using the built in function emd(x), but I can't get the time periode I used for the signal, instead there are samples on the x-axis.
Can anyone help me with assigning time vector on the x-axis for emd?
Thanks in advance,
댓글 수: 0
답변 (1개)
Mathieu NOE
2021년 5월 11일
hello
if you know your sampling frequency (Fs) of the original data , and the length of the data , it's fairly straithforward :
dt = 1/Fs;
time = (0:samples-1) * dt;
댓글 수: 5
Mathieu NOE
2021년 5월 16일
hello Jan
I thought the topic has already been answered - in another post (about the same exact question ??)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!