How do I generate a time base for a data set?
显示 更早的评论
I have a file that contains EMG data. I need to generate a time base for the data set. The file is 5999 rows and 2 columns. This is what I currently have in the editor:
%Assignment 4 for SES 619 by Ethan Postans
Column1: EMG data for vastus lateralis muscle of the right leg.
Column2: EMG data for the vastus lateralis muscle of the left leg.
R_emg = data_set2(:,1);
L_emg = data_set2(:,2);
What is the line of code I should use to create a time base for this data set? And what is a time base?
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!