How to filter and remove unwanted noise from muscle contraction reading data in MATLAB
2 次查看(过去 30 天)
显示 更早的评论
I have a project where I need to remove unwanted noise in MATLAB data. It is a lot of data and contains a lot of noise. How can I make this data readable? I am very new to MATLAB and not fimiliar with most of the commands.
Thank you!
回答(1 个)
Alagu Sankar Esakkiappan
2022-1-25
Hello!
I see that you're trying to remove unwanted noise from your dataset in RightvsLeftBicep.xlsx . There are many ways to filter such data using MATLAB. One such method is smoothdata which uses weighted averaging among others to reduce noise. There are many filtering methods in smoothdata and different window periods you may try out to see which one fits best for your use case. You may refer to the following code snippet for reference:
warning('OFF', 'MATLAB:table:ModifiedAndSavedVarnames'); % To Suppress Warning due to incompatible Column Names in Dataset
exerciseTable = readtable( "RightvsLeftBicep.xlsx"); % You may try avoiding Spaces in 1st row of DataSet as good practice
t = exerciseTable{:,1};
rightBicep = exerciseTable{:,2};
leftBicep = exerciseTable{:,3};
% Every single entry as output of smoothdata is a result of 1000 Sample points.
% You may try reducing or increasing them as per your use case to further
% reduce sharp peaks and troughs.
plot(t,smoothdata(rightBicep,'sgolay',1000));
hold on;
% Alternatively, You may also explore other
% methods in smoothdata documentation
plot(t,smoothdata(leftBicep,'sgolay',1000));
legend("Right Bicep","Left Bicep");
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Measurements and Feature Extraction 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!